html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
        :root {
            --primary-orange: #F06A21;
            --secondary-yellow: #FBB03B;
            --dark-blue: #1B3954;
            --teal: #39A2AE;
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.6;
            background-color: #000;
        }
/* Heading Styles */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.capture-title,
.footer-header {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navigation */
.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Specific Component Styles */
.section-badge {
    font-family: var(--font-heading);
    font-weight: 500;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-title,
.vm-card h3,
.facility-item h4,
.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.header-phone,
.cta-phone,
.get-directions-button,
.submit-button,
.call-button {
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Description Text */
.hero-description,
.section-description,
.about-description,
.manager-description {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.8;
}

/* Form Elements */
input,
textarea,
select,
.form-control {
    font-family: var(--font-body);
}

/* Footer */
.footer-links a {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Additional Components */
.testimonial-text {
    font-family: var(--font-body);
    font-style: italic;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-weight: 700; /* Slightly bolder on mobile */
    }
    
    .nav-link {
        font-size: 1.1rem; /* Slightly larger on mobile */
    }
}

        .navbar {
    background-color: rgba(0, 0, 0, 0.3) !important;
    padding: 0; /* Removed padding */
    backdrop-filter: blur(5px);
    height: 80px; /* Fixed height for header */
    display: flex;
    align-items: center;
}

.navbar-brand {
    position: relative; /* Added for logo positioning */
    margin-top: 25px; /* Pushes logo down */
}

.navbar-brand img {
    height: 140px; /* Increased logo size */
    width: auto;
    position: relative;
    z-index: 1000; /* Ensures logo stays above other elements */
}


        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary-yellow) !important;
        }

        .header-phone {
            background-color: var(--secondary-yellow);
            color: black;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .header-phone:hover {
            background-color: var(--primary-orange);
            color: black;
        }

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    color: white;
    padding-top: 120px;
    overflow: hidden;
}

/* Picture and Background Styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 400px); 
    height: 100%;
    background: linear-gradient(to right, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.6) 80%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Content Wrapper */
.container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-overlay {
        width: 100%; 
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.4) 0%, 
            rgba(0,0,0,0.6) 100%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
    }

    .hero-background-img {
        background-position: center center;
        background-size: cover;
    }

    .stats-counter-section::before {
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.8), 
            rgba(0, 0, 0, 0.8)
        ), url('images/sunset-stats.jpg');
    }
}

.welcome-text {
    color: var(--secondary-yellow);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-title .highlight {
    color: var(--secondary-yellow);
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.cta-phone, .get-directions-button {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-phone {
    background-color: var(--secondary-yellow);
    color: black;
}

.get-directions-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: black;
    backdrop-filter: blur(10px);
}

.cta-phone:hover, .get-directions-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-phone:hover {
    background-color: var(--primary-orange);
    color: black;
}

.get-directions-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-yellow);
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.scroll-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

/* Lead Capture section */
.lead-capture-section {
background-color: #1a1a1a;
padding: 4rem 0;
position: relative;
background-image: url(images/asfalt-light.png);
overflow: hidden;
background-blend-mode: soft-light;
opacity: 0.97;
}

.lead-capture-wrapper {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
}

.capture-form-container {
padding: 3rem;
}

.capture-title {
color: var(--secondary-yellow);
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.capture-subtitle {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
margin-bottom: 2rem;
}

.form-group {
margin-bottom: 1rem;
}

.form-control {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 0.8rem 1rem;
color: white;
transition: all 0.3s ease;
}

.form-control:focus {
background: rgba(255, 255, 255, 0.1);
border-color: var(--secondary-yellow);
box-shadow: none;
color: white;
}

.form-control::placeholder {
color: rgba(255, 255, 255, 0.5);
}

select.form-control {
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1rem center;
padding-right: 2.5rem;
}

select.form-control option {
background-color: #1a1a1a;
color: white;
}

.submit-button {
background: var(--secondary-yellow);
color: black;
border: none;
border-radius: 50px;
padding: 1rem 2rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
width: 100%;
justify-content: center;
}

.submit-button:hover {
background: var(--primary-orange);
color: white;
transform: translateY(-3px);
}

.capture-features {
background: var(--primary-orange);
height: 100%;
padding: 3rem;
display: flex;
flex-direction: column;
justify-content: center;
gap: 2rem;
}

.capture-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
color: white;
transition: all 0.3s ease;
}

.capture-card:hover {
transform: translateY(-5px);
}

.capture-icon {
width: 60px;
height: 60px;
background: rgb(255 255 255 / 10%);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
}
.capture-icon i,
.capture-icon .fa,
.capture-icon .fas,
.capture-icon .far,
.capture-icon .fab {
transition: transform 0.6s ease;
}

.capture-icon:hover i,
.capture-icon:hover .fa,
.capture-icon:hover .fas,
.capture-icon:hover .far,
.capture-icon:hover .fab {
transform: rotate(360deg);
}
.capture-icon i {
font-size: 1.8rem;
color: black;
}

.capture-card h4 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: black;
}

.capture-card p {
font-size: 0.95rem;
opacity: 0.9;
color: black;
margin: 0;
}

@media (max-width: 991px) {
.capture-form-container,
.capture-features {
    padding: 2rem;
}

.capture-features {
    flex-direction: row;
    flex-wrap: wrap;
}

.capture-card {
    flex: 1;
    min-width: 200px;
}
}

@media (max-width: 768px) {
.lead-capture-section {
    padding: 2rem 1rem;
}

.capture-title {
    font-size: 1.8rem;
}

.capture-card {
    min-width: 100%;
}
}
/* Loading Button Styles */
.submit-button {
position: relative;
overflow: hidden;
}

.button-text {
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: opacity 0.3s ease;
}

.button-loader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: inherit;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.spinner {
width: 20px;
height: 20px;
border: 2px solid rgba(0, 0, 0, 0.3);
border-top-color: #000;
border-radius: 50%;
visibility: hidden;
opacity: 0;
}

.submit-button.loading .button-text {
opacity: 0;
}

.submit-button.loading .button-loader {
opacity: 1;
visibility: visible;
}

.submit-button.loading .spinner {
visibility: visible;
opacity: 1;
animation: spin 0.8s linear infinite;
}

@keyframes spin {
to {
    transform: rotate(360deg);
}
}

/* Success/Error Message Styles */
.form-message {
position: fixed;
top: 20px;
right: 20px;
padding: 1rem 1.5rem;
border-radius: 10px;
background: white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
gap: 0.75rem;
transform: translateX(150%);
transition: transform 0.3s ease;
z-index: 1000;
}

.form-message.show {
transform: translateX(0);
}

.form-message.success {
background: #198754;
color: white;
}

.form-message.error {
background: #dc3545;
color: white;
}
/* STATS */
.stats-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(50px);
    opacity: 0;
    animation: fadeInLeft 1s ease 0.8s forwards;
    position: relative;
    z-index: 3;
}

.stat {
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 1rem;
    padding: 1rem;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.stat:hover i,
.stat:hover .fa,
.stat:hover .fas,
.stat:hover .far,
.stat:hover .fab {
transform: rotate(360deg);
transition: transform 0.6s ease;
}
.stat:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stat-icon {
    flex: 0 0 50px; /* Don't grow, don't shrink, fixed width */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(251, 176, 59, 0.1);
    border-radius: 12px;
    font-size: 2rem;
    color: var(--secondary-yellow);
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    line-height: 1.2;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .stat {
        padding: 0.75rem;
    }

    .stat-icon {
        flex: 0 0 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-container {
        margin-top: 2rem;
        transform: none;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stat {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

        @media (max-width: 768px) {
            .navbar {
                height: auto;
                padding: 1rem 0;
            }
            .navbar-brand {
                margin-top: 0;
            }
            .navbar-brand img {
                height: 100px; /* Smaller on mobile */
            }
            .navbar-nav {
                background-color: rgba(0, 0, 0, 0.9);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            .mobile-phone {
                display: block;
                text-align: center;
                margin: 1rem 0;
            }
            .hero-section {
                padding-top: 80px;
            }
            .hero-content {
                padding: 2rem 2rem;
                padding-top: 60px;
                margin-top: 3em;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .hero-title {
                font-size: 2.8rem;
            }
            .stats-container {
                margin-top: 2rem;
            }
        }

/* DIRECTIONS BUTTON */
.get-directions-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-orange);
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.get-directions-button:hover {
    background-color: var(--secondary-yellow);
    color: black;
    transform: translateY(-2px);
}

.get-directions-button i {
    font-size: 1.25rem;
}


  /* Features Section Styles */
.features-section {
    background-color: #26211c;
    padding: 6rem 0;
    position: relative;
    margin-top: -3px;
    margin-bottom: -3px;
    background-image: url(images/asfalt-bg.png);
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
    pointer-events: none;
}

.section-subtitle {
    color: var(--secondary-yellow);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    color: white;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Card Container */
.feature-card-container {
    perspective: 1000px;
    height: 400px;
    cursor: pointer;
}

/* Main Card */
.feature-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.feature-card-container:hover .feature-card {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Standard property */
    -webkit-backface-visibility: hidden; /* Safari support */
    border-radius: 20px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.card-front {
    z-index: 2;
    transform: rotateY(0deg);
}
.card-back {
    background-color: var(--secondary-yellow);
    transform: rotateY(180deg);
}

/* Icon Styles */
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 176, 59, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--secondary-yellow);
    transition: all 0.3s ease;
}

.card-back .feature-icon {
    background: rgba(0, 0, 0, 0.1);
}

.card-back .feature-icon i {
    color: #000;
}

/* Content Styles */
.feature-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-back .feature-title {
    color: #000;
}

.feature-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.flip-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.flip-indicator i {
    font-size: 1.1rem;
    animation: rotate 2s infinite linear;
}

/* Feature List on Back */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.feature-list li {
    color: #000;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: #000;
    font-size: 1.1rem;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .feature-card-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card-container {
        height: 300px;
    }
    
    .card-front, .card-back {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
}

/* Touch Device Support */
@media (hover: none) {
    .feature-card-container:active .feature-card {
        transform: rotateY(180deg);
    }
}

/* About Section Styles */
.about-section {
    background-color: #1a1a1a;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(251, 176, 59, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-badge i {
    color: var(--secondary-yellow);
    font-size: 1.2rem;
}

.section-badge span {
    color: var(--secondary-yellow);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .highlight {
    color: var(--secondary-yellow);
    display: block;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.about-location i {
    color: var(--secondary-yellow);
}

.about-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--secondary-yellow);
    font-size: 1.5rem;
}

.feature-item span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-text {
    color: var(--secondary-yellow);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 2rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-yellow);
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background-color: var(--secondary-yellow);
    color: black;
}

.cta-button.primary:hover {
    background-color: var(--primary-orange);
    color: black;
    transform: translateY(-3px);
}

.manager-info {
    color: white;
}

.manager-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.manager-phone {
    color: var(--secondary-yellow);
}

.about-image-container {
    position: relative;
    padding: 1rem;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    z-index: 2;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: all 0.5s ease;
}

.image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-content .years {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.card-content .text {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
}

.image-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
    transform: translate(30%, -30%);
}

/* Facilities Section Styles */
.facilities-section {
    background-color: #1a1a1a;
    padding: 8rem 0;
    position: relative;
}

.vision-mission-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.vm-card .card-icon {
    background: rgba(251, 176, 59, 0.1);
    color: var(--secondary-yellow);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vm-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Continuing Facilities Section Styles */
.card-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--secondary-yellow);
    opacity: 0.03;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    transition: all 0.3s ease;
}

.vm-card:hover .card-pattern {
    opacity: 0.05;
    transform: scale(1.2);
}

.facilities-content {
    padding-left: 2rem;
}

.facilities-header {
    margin-bottom: 3rem;
}

.facilities-header .section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.facility-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.facility-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.facility-item i {
    color: var(--secondary-yellow);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.facility-item h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.facility-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.location-highlights {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.location-highlights h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.highlights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-tag {
    background: rgba(251, 176, 59, 0.1);
    color: var(--secondary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: var(--secondary-yellow);
    color: black;
    transform: translateY(-2px);
}

.facilities-cta {
    text-align: center;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary-yellow);
}

.cta-button.secondary:hover {
    background: var(--secondary-yellow);
    color: black;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-section,
    .facilities-section {
        padding: 6rem 1rem;
    }

    .about-image-container {
        margin-top: 3rem;
    }

    .facilities-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .feature-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .manager-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .floating-card {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .card-content .years {
        font-size: 1.2rem;
    }

    .card-content .text {
        font-size: 0.75rem;
    }

    .vm-card {
        padding: 1.5rem;
    }

    .location-highlights {
        padding: 1.5rem;
    }

    .highlight-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Hover Effects */
.feature-item,
.facility-item,
.vm-card,
.highlight-tag {
    cursor: pointer;
    will-change: transform;
}

.feature-item:hover i,
.facility-item:hover i {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Custom Scrollbar */
.about-description {
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-yellow) rgba(255, 255, 255, 0.1);
}

.about-description::-webkit-scrollbar {
    width: 6px;
}

.about-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.about-description::-webkit-scrollbar-thumb {
    background: var(--secondary-yellow);
    border-radius: 3px;
}

/* Phone Number Button */
.phone-button {
    display: inline-block;
    background-color: var(--secondary-yellow);
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.phone-button i {
    margin-right: 10px;
}


        .image-container {
            position: relative;
            padding: 1rem;
            background-color: #d75f2a;
            border-radius: 20px;
            margin-left: 2rem;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            display: block;
        }

        @media (max-width: 991px) {
            .image-container {
                margin-left: 0;
                margin-top: 3rem;
            }
            .hero-section {
        padding-top: 100px;
        min-height: 100vh;
        height: auto;
        
    }
    .navbar-brand img {
    height: 80px;
  
}
    .navbar {
    height: auto;
    padding: 1rem 0;
    }
    .hero-content {
        padding-top: 80px;
    }
        }
/* TESTIMONIALS SECTION */

.testimonials-section {
    background-color: #1a1a1a;
    padding: 6rem 0;
    position: relative;
    background-image: url(images/asfalt-bg.png);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
    pointer-events: none;
}

.section-subtitle {
    color: var(--secondary-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.testimonials-carousel {
    padding: 2rem 0;
}

.testimonial-card {
    background: rgba(42, 42, 42, 0.8);
    border-radius: 20px;
    padding: 3rem;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    color: var(--secondary-yellow);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.testimonial-author h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.resident-tag {
    color: var(--secondary-yellow);
    font-size: 0.9rem;
    margin: 0;
}

/* Slick Carousel Customization */
.slick-slide {
    opacity: 0;
    transition: all 0.5s ease;
}

.slick-current {
    opacity: 1;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: var(--secondary-yellow);
    opacity: 0.5;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--secondary-yellow);
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-yellow);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary-orange);
}

.slick-prev:before {
    content: '←';
    font-family: 'slick';
    color: black;
}

.slick-next:before {
    content: '→';
    color: black;
    font-family: 'slick';
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .slick-prev {
        left: -20px;
    }
    
    .slick-next {
        right: -20px;
    }
}


/* Gallery Section Styles */
.gallery-section {
background-color: #1a1a1a;
background-image: url(images/asfalt-light.png);
padding: 6rem 0;
background-blend-mode: soft-light;
opacity: 0.97;
position: relative;
}

.section-description {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
line-height: 1.8;
}

.gp-nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
}

.gp-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gp-nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.gp-nav-item:hover,
.gp-nav-item.active {
    color: var(--secondary-yellow);
    background: rgba(255, 255, 255, 0.05);
}
/* Updated Gallery Grid Styles */
.gallery-grid {
padding: 0 15px;
}

.gallery-grid .row {
margin-bottom: 30px;
}

.gallery-grid .row:last-child {
margin-bottom: 0;
}

/* Top Row Items (3 across) */
.gallery-grid .row:first-child .gallery-item {
height: 300px;
margin-bottom: 30px;
}

/* Bottom Row Items (2 across) */
.gallery-grid .row:last-child .gallery-item {
height: 400px;
}

.gallery-item {
position: relative;
border-radius: 15px;
overflow: hidden;
margin: 0 15px;
}

.gallery-image {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}

.gallery-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.gallery-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, 
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.8) 100%);
opacity: 0;
display: flex;
align-items: flex-end;
padding: 2rem;
transition: all 0.3s ease;
}

.gallery-info {
transform: translateY(20px);
transition: all 0.3s ease;
}

.gallery-info h4 {
color: white;
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

.gallery-info p {
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem;
margin-bottom: 1rem;
}

.view-more {
width: 40px;
height: 40px;
background-color: var(--secondary-yellow);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #000;
font-size: 1.2rem;
transition: all 0.3s ease;
}

/* Hover Effects */
.gallery-item:hover .gallery-image img {
transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}

.gallery-item:hover .gallery-info {
transform: translateY(0);
}

.gallery-item:hover .view-more {
background-color: var(--primary-orange);
color: white;
}

/* PhotoSwipe Customization */
.pswp__bg {
background: rgba(0, 0, 0, 0.95);
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
background: none !important;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
content: '';
top: 35px;
background-color: var(--secondary-yellow) !important;
height: 30px;
width: 32px;
position: absolute;
}

.pswp__button--arrow--left {
left: 0;
}

.pswp__button--arrow--right {
right: 0;
}

.pswp__button--arrow--left:before {
left: 6px;
background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
right: 6px;
background-position: -94px -44px;
}

/* Responsive Styles */
@media (max-width: 991px) {
.gallery-grid .row:first-child .gallery-item,
.gallery-grid .row:last-child .gallery-item {
    height: 300px;
    margin-bottom: 20px;
}

.gallery-grid {
    padding: 0 10px;
}

.gallery-item {
    margin: 0 10px;
}
}

@media (max-width: 768px) {
.gallery-section {
    padding: 4rem 0;
}

.gallery-grid {
    padding: 0 5px;
}

.gallery-grid .row:first-child .gallery-item,
.gallery-grid .row:last-child .gallery-item {
    height: 250px;
    margin-bottom: 10px;
}

.gallery-item {
    margin: 0 5px 10px;
}

/* Adjust filter buttons for mobile */
.filter-btn {
    padding: 0.4rem 1rem;
    margin: 0 0.3rem;
    font-size: 0.9rem;
}

/* Keep overlay visible on mobile */
.gallery-overlay,
.gallery-info,
.view-more {
    display: flex;
}

.gallery-info h4 {
    font-size: 1.1rem;
}

.gallery-info p {
    font-size: 0.8rem;
}

.view-more {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}
}

/* Navigation Arrows for Gallery */
.gallery-grid .slick-prev,
.gallery-grid .slick-next {
width: 40px;
height: 40px;
background-color: var(--secondary-yellow);
border-radius: 50%;
z-index: 1;
transition: all 0.3s ease;
}

.gallery-grid .slick-prev {
left: -50px;
}

.gallery-grid .slick-next {
right: -50px;
}

.gallery-grid .slick-prev:before,
.gallery-grid .slick-next:before {
font-family: "Font Awesome 6 Pro";
font-size: 20px;
line-height: 1;
color: #fff;
}

.gallery-grid .slick-prev:before {
content: "\f053";
}

.gallery-grid .slick-next:before {
content: "\f054";
}

@media (max-width: 768px) {
.gallery-grid .slick-prev {
    left: 10px;
}

.gallery-grid .slick-next {
    right: 10px;
}
}
        /* STATS SECTION */
        .stats-counter-section .section-badge {
position: relative;
z-index: 2;
background: rgba(251, 176, 59, 0.15);
}

.stats-counter-section .section-title {
position: relative;
z-index: 2;
color: white;
margin-bottom: 2rem;
}

.stats-counter-section .section-title .highlight {
color: var(--secondary-yellow);
}
        .stats-counter-section {
    background-color: #1a1a1a;
    position: relative;
    padding: 6rem 0;
    color: white;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/sunset-stats.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.stat-box {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.icon-flip {
    perspective: 1000px;
    margin-bottom: 1.5rem;
}

.icon-inner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.stat-box:hover .icon-inner {
    transform: rotateY(180deg);
}

.icon-front, .icon-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.icon-back {
    transform: rotateY(180deg);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin: 1rem 0;
}

.stat-box p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .stat-box {
        margin-bottom: 1rem;
    }
}

/* FACILITIES SECTION */

/* Facilities & Activities Section */
.facilities-section {
    background-color: #1a1a1a;
    padding: 6rem 0;
    color: white;
    background-blend-mode: soft-light;
    opacity: 0.97;
    background-image: url(images/asfalt-light.png);
}

.facilities-header {
    color: var(--secondary-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.facilities-text,
.facilities-highlight {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.facilities-highlight {
    font-weight: 500;
    color: var(--secondary-yellow);
}
.about-text,
.about-highlight {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-highlight {
    font-weight: 500;
    color: var(--secondary-yellow);
}
.image-container {
    border-radius: 20px;
    overflow: hidden;
    background-color: #d75f2a;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facilities-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Park Rules Section Styles */
/* Park Rules Section Styles */
.park-rules-section {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
margin-top: -3px;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.park-rules-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

.rules-header {
position: sticky;
top: 2rem;
transition: transform 0.3s ease;
}

.section-badge {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: rgba(251, 176, 59, 0.1);
padding: 0.5rem 1rem;
border-radius: 50px;
margin-bottom: 1.5rem;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}

.section-badge i {
color: var(--secondary-yellow);
font-size: 1.2rem;
transition: transform 0.3s ease;
}

.section-badge:hover i {
transform: rotate(360deg);
}

.section-badge span {
color: var(--secondary-yellow);
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}

.section-title {
color: white;
font-size: 2.5rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 0.6s ease 0.2s forwards;
}

.section-title .highlight {
color: var(--secondary-yellow);
position: relative;
display: inline-block;
}

.section-title .highlight::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 100%;
height: 2px;
background: var(--secondary-yellow);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.3s ease;
}

.section-title:hover .highlight::after {
transform: scaleX(1);
transform-origin: left;
}

.section-description {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 0.6s ease 0.4s forwards;
}

/* Enhanced Download Button */
.download-rules {
position: relative;
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: var(--secondary-yellow);
color: black;
padding: 1rem 1.5rem;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
overflow: hidden;
transform: translateY(20px);
opacity: 0;
animation: fadeInUp 0.6s ease 0.6s forwards;
}

.download-rules::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--primary-orange);
transform: translateX(-100%);
transition: transform 0.3s ease;
z-index: 0;
}

.download-rules:hover::before {
transform: translateX(0);
color: black;
}

.download-rules i,
.download-rules span {
position: relative;
z-index: 1;
transition: all 0.3s ease;
}

.download-rules:hover {
color: black;
transform: translateY(-3px);
}

.download-rules:hover i {
transform: translateY(-2px);
}

.file-size {
font-size: 0.8rem;
opacity: 0.8;
margin-left: 0.5rem;
}

i, .fa, .fas, .far, .fab {
transition: transform 0.6s ease;
}

*:hover > i,
*:hover > .fa,
*:hover > .fas,
*:hover > .far,
*:hover > .fab {
transform: rotate(360deg);
}

/* Rules Grid and Cards */
.rules-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.6s ease 0.8s forwards;
}

.rule-card {
position: relative;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 1.5rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
overflow: hidden;
backdrop-filter: blur(5px);
z-index: 1;
}

.rule-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, var(--secondary-yellow), var(--primary-orange));
opacity: 0;
transition: opacity 0.4s ease;
z-index: -1;
}

.rule-icon {
position: relative;
width: 50px;
height: 50px;
background: rgba(251, 176, 59, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
transition: all 0.4s ease;
}

.rule-icon i {
color: var(--secondary-yellow);
font-size: 1.5rem;
transition: all 0.3s ease;
}

.rule-content {
position: relative;
z-index: 1;
}

.rule-content h3 {
color: white;
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 0.75rem;
transition: color 0.3s ease;
}

.rule-content p {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.7;
margin: 0;
transition: all 0.3s ease;
}

/* Hover Indicator */
.hover-indicator {
position: absolute;
top: 1rem;
right: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--secondary-yellow);
font-size: 0.85rem;
opacity: 0.7;
transition: all 0.3s ease;
}

.hover-indicator i {
font-size: 1rem;
animation: pointBounce 2s infinite;
}



/* Desktop Hover States */
@media (min-width: 769px) {
.rule-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-yellow);
}

.rule-card:hover::before {
    opacity: 0.05;
}

.rule-card:hover .rule-icon {
    transform: scale(1.1);
    background: var(--secondary-yellow);
}

.rule-card:hover .rule-icon i {
    color: #000;
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-yellow);
}



.rule-card:hover .hover-indicator {
    opacity: 0;
    transform: translateY(-10px);
}
}

/* Mobile States */
@media (max-width: 768px) {
.hover-indicator span {
    content: "Tap to expand";
}

.hover-indicator i {
    animation: tapBounce 2s infinite;
}

.rule-card.expanded {
    transform: translateY(-5px);
    border-color: var(--secondary-yellow);
    background: rgba(255, 255, 255, 0.05);
}



.rule-card.expanded .hover-indicator {
    opacity: 0;
}
}

/* Animations */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes pointBounce {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-3px);
}
}

@keyframes tapBounce {
0%, 100% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
}

/* Footer */
.rules-footer {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.6s ease 1s forwards;
}

.rules-note {
display: flex;
align-items: center;
gap: 1rem;
color: rgba(255, 255, 255, 0.6);
transition: all 0.3s ease;
}

.rules-note:hover {
color: rgba(255, 255, 255, 0.8);
}

.rules-note i {
color: var(--secondary-yellow);
font-size: 1.2rem;
transition: transform 0.3s ease;
}

.rules-note:hover i {
transform: scale(1.1);
}

.rules-note p {
margin: 0;
font-size: 0.95rem;
}

/* Additional Responsive Styles */
@media (max-width: 991px) {
.rules-header {
    position: static;
    margin-bottom: 3rem;
}

.rules-grid {
    grid-template-columns: 1fr;
}

.rules-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}

.contact-button {
    width: 100%;
    justify-content: center;
}
}

@media (max-width: 768px) {
.park-rules-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
}

.rule-card {
    padding: 1.25rem;
}

.rules-note {
    flex-direction: column;
    text-align: center;
}
}

/* Enhanced Contact Button */
.contact-button {
position: relative;
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: transparent;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 50px;
border: 2px solid var(--secondary-yellow);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
overflow: hidden;
}

.contact-button::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--secondary-yellow);
transform: translateX(-100%);
transition: transform 0.3s ease;
z-index: 0;
}

.contact-button:hover::before {
transform: translateX(0);
}

.contact-button i,
.contact-button span {
position: relative;
z-index: 1;
}

.contact-button:hover {
color: black;
transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}

/* Focus States for Accessibility */
.rule-card:focus-visible,
.contact-button:focus-visible,
.download-rules:focus-visible {
outline: 2px solid var(--secondary-yellow);
outline-offset: 2px;
}

/* Responsive Styles */
@media (max-width: 991px) {
.rules-header {
    position: static;
    margin-bottom: 3rem;
}

.rules-grid {
    grid-template-columns: 1fr;
}

.rules-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
}

.contact-button {
    width: 100%;
    justify-content: center;
}
}

@media (max-width: 768px) {
.park-rules-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
}

.rule-card {
    padding: 1.25rem;
}

.rules-note {
    flex-direction: column;
    text-align: center;
}

.additional-info {
    display: none;
}

.rule-card:active .additional-info {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
}

/* Phone Number Button */
.phone-button {
    display: inline-block;
    background-color: var(--secondary-yellow);
    color: black;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.phone-button i {
    margin-right: 10px;
}

/* Contact section */

.contact-section {
background-color: #1a1a1a;
padding: 8rem 0;
margin-top: -3px;
position: relative;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

.map-wrapper {
height: 100%;
display: flex;
flex-direction: column;
gap: 2rem;
}

.map-container {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cards {
display: flex;
flex-direction: column;
gap: 1rem;
}

.contact-card {
display: flex;
align-items: center;
gap: 1.5rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 1.25rem;
transition: all 0.3s ease;
}

.contact-card:hover {
background: rgba(255, 255, 255, 0.05);
transform: translateX(5px);
}

.card-icon {
width: 50px;
height: 50px;
background: rgba(251, 176, 59, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: var(--secondary-yellow);
flex-shrink: 0;
}

.card-content h4 {
color: white;
font-size: 1.1rem;
margin-bottom: 0.25rem;
}

.card-content p {
color: rgba(255, 255, 255, 0.7);
margin: 0;
line-height: 1.6;
font-size: 0.95rem;
}

.card-content a {
color: var(--secondary-yellow);
text-decoration: none;
transition: color 0.3s ease;
}

.card-content a:hover {
color: var(--primary-orange);
}

.contact-form-wrapper {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 2.5rem;
height: 100%;
}

.contact-form h3 {
color: white;
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 0.5rem;
}

.form-subtitle {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 2rem;
}

.form-group {
margin-bottom: 0.5rem;
}

.form-group label {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 0.5rem;
font-size: 0.9rem;
font-weight: 500;
}

.form-control {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 0.8rem 1rem;
color: white;
transition: all 0.3s ease;
}

.form-control:focus {
background: rgba(255, 255, 255, 0.1);
border-color: var(--secondary-yellow);
box-shadow: none;
color: white;
}

.submit-button {
background: var(--secondary-yellow);
color: black;
border: none;
border-radius: 50px;
padding: 1rem 2rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
width: 100%;
justify-content: center;
margin-top: 1rem;
}

.submit-button:hover {
background: var(--primary-orange);
color: black;
transform: translateY(-3px);
}

@media (max-width: 991px) {
.contact-section {
    padding: 4rem 0;
}

.map-wrapper {
    margin-bottom: 2rem;
}

.contact-form-wrapper {
    padding: 1.5rem;
}

.contact-card {
    padding: 1rem;
}
}

@media (max-width: 768px) {
.contact-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

.card-icon {
    margin-bottom: 1rem;
}

.contact-form h3 {
    font-size: 1.5rem;
}

.section-title {
    font-size: 2rem;
}
}

/* Footer Styles */
.footer-section {
    background-color: #26211c;
    color: #fff;
    background-image: url(images/asfalt-bg.png);
    padding: 5rem 0 2rem;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.footer-header {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-bottom: .5em;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-bottom: .5em;
}

.footer-links a:hover {
    color: var(--secondary-yellow);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-yellow);
    color: #000;
    transform: translateY(-3px);
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--secondary-yellow);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 4px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-yellow);
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.copyright-bar a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.copyright-bar a:hover {
    color: var(--secondary-yellow);
}

@media (max-width: 991px) {
    .footer-section {
        padding: 4rem 2rem 2rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-header {
        margin-top: 2rem;
    }
    
    .copyright-bar {
        text-align: center;
    }
    
    .copyright-bar .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}
/* Manager Section Styles */
.manager-section {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.manager-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

.manager-content {
position: relative;
z-index: 1;
padding-left: 2rem;
}

.manager-description {
color: rgba(255, 255, 255, 0.85);
font-size: 1.1rem;
line-height: 1.8;
margin: 2rem 0;
}

.manager-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
margin: 2.5rem 0;
}

.feature-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
transition: all 0.3s ease;
}

.feature-item:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-3px);
}

.feature-item i {
color: var(--secondary-yellow);
font-size: 1.5rem;
}

.feature-item span {
color: white;
font-size: 1rem;
font-weight: 500;
}

.contact-options {
display: flex;
align-items: center;
gap: 2rem;
margin-top: 3rem;
}

.call-button {
display: inline-flex;
align-items: center;
gap: 1rem;
background: var(--secondary-yellow);
color: black;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
}

.call-icon i {
font-size: 1.5rem;
}

.call-text {
display: flex;
flex-direction: column;
}

.call-text span {
font-weight: 600;
}

.call-text small {
font-size: 0.9rem;
opacity: 0.8;
}

.call-button:hover {
background: var(--primary-orange);
color: black;
transform: translateY(-3px);
}

.office-hours {
display: flex;
align-items: center;
gap: 1rem;
color: rgba(255, 255, 255, 0.7);
}

.office-hours i {
font-size: 1.5rem;
color: var(--secondary-yellow);
}

.hours-content {
display: flex;
flex-direction: column;
}

.hours-content span {
font-size: 1.1rem;
font-weight: 500;
color: white;
}

.hours-content small {
font-size: 0.9rem;
}

.manager-image-container {
position: relative;
padding: 1.5rem;
background-color: var(--primary-orange);
border-radius: 20px;
}

.manager-image {
width: 100%;
height: auto;
border-radius: 15px;
display: block;
}

.experience-badge {
position: absolute;
bottom: 0;
right: 0;
background: white;
padding: 1rem 1.5rem;
border-radius: 15px;
display: flex;
align-items: center;
gap: 1rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transform: translate(-20px, -20px);
}
.experience-badge i,
.experience-badge .fa,
.experience-badge .fas,
.experience-badge .far,
.experience-badge .fab {
transition: transform 0.6s ease;
}

.experience-badge:hover i,
.experience-badge:hover .fa,
.experience-badge:hover .fas,
.experience-badge:hover .far,
.experience-badge:hover .fab {
transform: rotate(360deg);
}
.badge-icon {
width: 50px;
height: 50px;
background: var(--secondary-yellow);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
}

.badge-content {
display: flex;
flex-direction: column;
}

.badge-content .years {
font-size: 1.5rem;
font-weight: 700;
color: #000;
line-height: 1;
}

.badge-content .text {
font-size: 0.85rem;
color: rgba(0, 0, 0, 0.7);
}

/* Responsive Styles */
@media (max-width: 991px) {
.manager-section {
    padding: 4rem 0;
}

.manager-content {
    margin-top: 3rem;
    padding-left: 0;
}

.contact-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.call-button {
    width: 100%;
    justify-content: center;
}

.manager-features {
    grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
.manager-image-container {
    padding: 1rem;
}

.experience-badge {
    transform: translate(-10px, -10px);
    padding: 0.75rem 1rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.badge-content .years {
    font-size: 1.2rem;
}

.badge-content .text {
    font-size: 0.75rem;
}
}

/* GALLERY PAGE STYLES */
/* Gallery Page Specific Styles */
.gp-hero {
position: relative;
min-height: 60vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/gallery-hero.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
color: white;
display: flex;
align-items: center;
padding: 8rem 0 4rem;
}

.gp-hero-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
margin-bottom: 1.5rem;
}

.gp-highlight {
color: var(--secondary-yellow);
display: block;
}

.gp-hero-desc {
font-size: clamp(1rem, 1.5vw, 1.2rem);
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
}

/* Navigation Styles */
.gp-navigation {
background: #1a1a1a;
padding: 2rem 0;
position: sticky;
top: 80px;
z-index: 100;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-nav-wrapper {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

.gp-nav-item {
display: flex;
flex-direction: column;
align-items: center;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
transition: all 0.3s ease;
padding: 1rem;
border-radius: 12px;
}

.gp-nav-item i {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}

.gp-nav-item span {
font-size: 0.9rem;
font-weight: 500;
}

.gp-nav-item:hover,
.gp-nav-item.active {
color: var(--secondary-yellow);
background: rgba(255, 255, 255, 0.05);
}

/* Category Section Styles */
.gp-category {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
}

.gp-category:not(:last-child) {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-category-header {
text-align: center;
margin-bottom: 4rem;
}

.gp-badge {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: rgba(251, 176, 59, 0.1);
padding: 0.5rem 1.5rem;
border-radius: 50px;
margin-bottom: 1.5rem;
color: var(--secondary-yellow); /* Added this to ensure text is visible */
}

.gp-badge i {
color: var(--secondary-yellow);
font-size: 1.2rem;
}

.gp-badge span {
color: var(--secondary-yellow); /* Explicitly set text color */
font-size: 0.95rem;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}

.gp-title {
color: white;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
}

.gp-desc {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}

/* Gallery Grid Styles */
.gp-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}

.gp-item {
position: relative;
border-radius: 15px;
overflow: hidden;
aspect-ratio: 1;
cursor: pointer;
}

.gp-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.gp-item:hover img {
transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 991px) {
.gp-navigation {
    top: 0;
    padding: 1rem 0;
}

.gp-nav-wrapper {
    gap: 1rem;
}

.gp-nav-item {
    padding: 0.75rem;
}

.gp-category {
    padding: 4rem 0;
}

.gp-category-header {
    margin-bottom: 2rem;
}
}

@media (max-width: 768px) {
.gp-hero {
    min-height: 50vh;
    padding: 6rem 0 3rem;
}

.gp-nav-item i {
    font-size: 1.2rem;
}

.gp-nav-item span {
    font-size: 0.8rem;
}

.gp-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gp-title {
    font-size: 2rem;
}
}

/* Smooth Scroll Behavior */
html {
scroll-behavior: smooth;
scroll-padding-top: 100px;
}

/* Park Rules page */
/* Park Rules Section Styles */
.rules-info-section {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.rules-info-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

.section-description {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
}

.park-rule-card {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
height: 100%;
transition: transform 0.3s ease;
}

.park-rule-card:hover {
transform: translateY(-5px);
}

.park-rule-header {
background: #374251;
color: white;
padding: 1.5rem;
display: flex;
align-items: center;
gap: 12px;
}

.park-rule-header i {
color: var(--secondary-yellow);
font-size: 1.5rem;
}

.park-rule-header h3 {
margin: 0;
font-size: 1.25rem;
font-weight: 500;
}

.park-rule-content {
padding: 1.5rem;
}

.park-rule-content ul {
list-style: none;
padding: 0;
margin: 0;
}

.park-rule-content li {
color: rgba(255, 255, 255, 0.85);
padding: 12px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
line-height: 1.6;
}

.park-rule-content li:last-child {
border-bottom: none;
padding-bottom: 0;
}

@media (max-width: 991px) {
.rules-info-section {
    padding: 8rem 0;
}

.park-rule-card {
    margin-bottom: 1rem;
}
}

@media (max-width: 768px) {
.section-title {
    font-size: 2rem;
}

.park-rule-header {
    padding: 1.25rem;
}

.park-rule-content {
    padding: 1.25rem;
}
}

/* Activities page */

/* Activities Hero Section */
.activities-hero {
position: relative;
min-height: 80vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/activities-hero.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
color: white;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding-top: 80px;
}

.activities-hero .hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 0 20px;
}

.activities-hero h1 {
font-size: clamp(3rem, 6vw, 4.5rem);
font-weight: 700;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.activities-hero p {
font-size: clamp(1.1rem, 2vw, 1.3rem);
opacity: 0.9;
margin-bottom: 2rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.scroll-indicator {
display: inline-flex;
flex-direction: column;
align-items: center;
color: white;
text-decoration: none;
font-size: 1.1rem;
opacity: 0.8;
transition: all 0.3s ease;
}

.scroll-indicator i {
font-size: 1.5rem;
margin-top: 0.5rem;
animation: bounce 2s infinite;
}

.scroll-indicator:hover {
opacity: 1;
transform: translateY(5px);
}

/* On-Site Activities Section */
.onsite-activities {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.onsite-activities::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

.onsite-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
padding: 2rem 0;
}

.activity-card {
position: relative;
border-radius: 20px;
overflow: hidden;
background: rgba(42, 42, 42, 0.8);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease;
}

.activity-card.large {
grid-column: 1 / -1;
}

.activity-card:hover {
transform: translateY(-5px);
}

.activity-image {
width: 100%;
height: 300px;
overflow: hidden;
}

.activity-card.large .activity-image {
height: 400px;
}

.activity-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
transform: scale(1.05);
}

.activity-content {
padding: 2rem;
color: white;
}


.activity-icon {
width: 50px;
height: 50px;
background: rgb(0 0 0 / 70%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: -25px auto 1rem;
position: relative;
z-index: 2;
}

.activity-icon i {
color: var(--secondary-yellow);
font-size: 1.8rem;
}

.activity-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 600;
}

.activity-content p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
margin: 0;
}
.activities-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
padding: 0 1rem;
}

.activity-card {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease;
}

.activity-card:hover {
transform: translateY(-5px);
}

.activity-image {
width: 100%;
height: 200px;
overflow: hidden;
}

.activity-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
transform: scale(1.1);
}



.activity-card h3 {
color: white;
font-size: 1.3rem;
margin-bottom: 1rem;
text-align: center;
padding: 0 1.5rem;
}

.activity-card p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
margin: 0;
padding: 0 1.5rem 1.5rem;
text-align: center;
}

@media (max-width: 768px) {
.activities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
}
/* Nearby Activities Section */
.nearby-activities {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
background-image: url(images/asfalt-light.png);
background-blend-mode: soft-light;
opacity: 0.97;
}

.attractions-slider {
padding: 2rem 0;
}

.attraction-slide {
padding: 1rem;
}

.attraction-card {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.attraction-image {
position: relative;
height: 300px;
overflow: hidden;
}

/* Continuing Nearby Activities Section */
.attraction-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
transform: scale(1.05);
}

.distance-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--secondary-yellow);
color: black;
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
}

.attraction-content {
padding: 2rem;
color: white;
}

.attraction-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 600;
}

.attraction-content p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
margin-bottom: 1.5rem;
}

.learn-more {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--secondary-yellow);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}

.learn-more:hover {
color: var(--primary-orange);
gap: 0.8rem;
}

/* Adventure Map Section */
.adventure-map {
background-color: #1a1a1a;
padding: 8rem 0;
position: relative;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.adventure-map::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

.map-content {
padding-right: 3rem;
}

.distance-list {
margin-top: 3rem;
}

.distance-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
margin-bottom: 1rem;
transition: all 0.3s ease;
}

.distance-item:hover {
background: rgba(255, 255, 255, 0.05);
transform: translateX(10px);
}

.distance-item i {
color: var(--secondary-yellow);
font-size: 2rem;
width: 50px;
text-align: center;
}

.distance-info {
flex: 1;
}

.distance-info h4 {
color: white;
margin: 0 0 0.25rem;
font-size: 1.2rem;
font-weight: 600;
}

.distance-info p {
color: rgba(255, 255, 255, 0.7);
margin: 0;
font-size: 0.95rem;
}

.map-container {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Slider Navigation */
.attractions-slider .slick-prev,
.attractions-slider .slick-next {
width: 50px;
height: 50px;
background: var(--secondary-yellow);
border-radius: 50%;
z-index: 10;
transition: all 0.3s ease;
}

.attractions-slider .slick-prev:hover,
.attractions-slider .slick-next:hover {
background: var(--primary-orange);
}

.attractions-slider .slick-prev:before,
.attractions-slider .slick-next:before {
font-family: "Font Awesome 6 Duotone";
font-size: 20px;
color: black;
}

.attractions-slider .slick-prev {
left: -25px;
}

.attractions-slider .slick-next {
right: -25px;
}

/* Animations */
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
}
40% {
    transform: translateY(-10px);
}
60% {
    transform: translateY(-5px);
}
}

/* Responsive Styles */
@media (max-width: 991px) {
.onsite-grid {
    grid-template-columns: 1fr;
}

.map-content {
    padding-right: 0;
    margin-bottom: 3rem;
}

.activity-card.large .activity-image,
.activity-image {
    height: 250px;
}
}

@media (max-width: 768px) {
.activities-hero {
    min-height: 60vh;
    background-attachment: scroll;
}

.section-title {
    font-size: 2rem;
}

.distance-item {
    padding: 1rem;
}

.distance-item i {
    font-size: 1.5rem;
}

.attractions-slider .slick-prev {
    left: 10px;
}

.attractions-slider .slick-next {
    right: 10px;
}
}

/* Attractions Grid Layout */
.attractions-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 2rem;
}

.attraction-card {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.3s ease;
}

.attraction-card:hover {
transform: translateY(-5px);
}

.attraction-image {
position: relative;
height: 250px;
overflow: hidden;
}

.attraction-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-image img {
transform: scale(1.1);
}

.distance-badge {
position: absolute;
top: 1rem;
right: 1rem;
background: var(--secondary-yellow);
color: black;
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.9rem;
}

.attraction-content {
padding: 2rem;
color: white;
}

.attraction-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 600;
}

.attraction-content p {
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
margin-bottom: 1.5rem;
}

.learn-more {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--secondary-yellow);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}

.learn-more:hover {
color: var(--primary-orange);
gap: 0.8rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
.attractions-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.attractions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.attraction-image {
    height: 200px;
}
}


/* CONTACT US PAGE */

/* Contact Page Styles */

/* Hero Section */
.page-hero-section {
background-color: #1a1a1a;
padding: 180px 0 100px;
position: relative;
background-image: url(images/asfalt-bg.png);
overflow: hidden;
}

.page-hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, rgba(240, 106, 33, 0.05), rgba(251, 176, 59, 0.05));
pointer-events: none;
}

/* Info Block Section */
.info-block {
background-color: #1a1a1a;
padding: 80px 0;
position: relative;
background-image: url(images/asfalt-bg.png);
}

.info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.info-item {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
transition: transform 0.3s ease;
}

.info-item:hover {
transform: translateY(-5px);
}

.item-content {
padding: 2rem;
text-align: center;
}

.item-icon {
width: 60px;
height: 60px;
background: rgba(251, 176, 59, 0.1);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.item-icon i {
color: var(--secondary-yellow);
font-size: 1.8rem;
}

.item-content h3 {
color: white;
font-size: 1.3rem;
margin-bottom: 1rem;
}

.item-details {
color: rgba(255, 255, 255, 0.7);
}

.item-details p {
margin: 0;
line-height: 1.6;
}

.phone-link {
color: var(--secondary-yellow);
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
transition: color 0.3s ease;
}

.phone-link:hover {
color: var(--primary-orange);
}

@media (max-width: 991px) {
.info-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.page-hero-section {
    padding: 140px 0 60px;
}

.info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-block {
    padding: 40px 0;
}
}
.info-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.info-item {
background: rgba(42, 42, 42, 0.8);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
transition: transform 0.3s ease;
}

.info-item:hover {
transform: translateY(-5px);
}

.item-content {
padding: 2rem;
text-align: center;
}

.item-icon {
width: 60px;
height: 60px;
background: rgba(251, 176, 59, 0.1);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.item-icon i {
color: var(--secondary-yellow);
font-size: 1.8rem;
}

.item-content h3 {
color: white;
font-size: 1.3rem;
margin-bottom: 1rem;
}

.item-details {
color: rgba(255, 255, 255, 0.7);
}

.phone-link {
color: var(--secondary-yellow);
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
transition: color 0.3s ease;
}

.phone-link:hover {
color: var(--primary-orange);
}

/* Connect Block Styles */
.connect-block {
background-color: #1a1a1a;
padding: 6rem 0;
position: relative;
background-image: url(images/asfalt-bg.png);
}

.message-form {
padding-right: 3rem;
}

.input-wrap {
margin-bottom: 1.5rem;
}

.input-wrap label {
display: block;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 0.5rem;
font-size: 0.95rem;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
width: 100%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 0.8rem 1rem;
color: white;
transition: all 0.3s ease;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
background: rgba(255, 255, 255, 0.1);
border-color: var(--secondary-yellow);
outline: none;
}

.send-button {
background: var(--secondary-yellow);
color: black;
border: none;
border-radius: 50px;
padding: 1rem 2rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
width: 100%;
justify-content: center;
}

.send-button:hover {
background: var(--primary-orange);
color: white;
transform: translateY(-2px);
}

.location-block {
height: 100%;
display: flex;
flex-direction: column;
}

.map-container {
border-radius: 20px;
overflow: hidden;
flex-grow: 1;
margin-bottom: 2rem;
}

.directions-wrap {
text-align: center;
}

.directions-button {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--secondary-yellow);
color: black;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.directions-button:hover {
background: var(--primary-orange);
color: white;
transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
.info-grid {
    grid-template-columns: repeat(2, 1fr);
}

.message-form {
    padding-right: 0;
    margin-bottom: 3rem;
}
}

@media (max-width: 768px) {
.info-grid {
    grid-template-columns: 1fr;
}

.info-header,
.info-block,
.connect-block {
    padding: 3rem 0;
}
}

/* Thank You Page */

.thank-you-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #1a1a1a;
  padding: 2rem;
  text-align: center;
}

.content {
  margin-top: 2rem;
}

h1 {
  color: #fbb03b;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.message {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.subtitle {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  background-color: var(--secondary-yellow);
  color: black;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: var(--primary-orange);
  color: black;
}

/* Checkmark Animation */
.check-circle {
  width: 100px;
  margin-bottom: 1rem;
}

.checkmark {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: var(--primary-orange);
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px var(--secondary-yellow);
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--secondary-yellow);
  fill: white;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4CAF50;
  }
}
