/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Bryan Hadaway
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/bhadaway/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024.2
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

:root {
    --primary: #ff5900;
    --secondary: #333;
    --light: #f8f9fa;
    --dark: #212529;
    --accent: #32CD32;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


.arrowbg{
    background-image:url('/wp-content/uploads/2025/05/bouncearrowbw.jpg');
    background-size:cover;
}
  
/* Header Section */
header {
    background-color: var(--dark);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    mix-blend-mode:multiply;
    backdrop-filter:blur(2px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo svg {
    height: 4cap;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/800') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: left;
    color: white;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight:900;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Features Section */
.features {
    padding: 5rem 0;
}

section {
    padding: 5rem 0;
    border-bottom: 1px solid #ddd;
}


.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 0.8rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background-color: var(--primary);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-img {
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.feature-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-content p {
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: #f5f5f5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    background-color: var(--dark);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-card:nth-child(2) .pricing-header {
    background-color: var(--primary);
}

.pricing-header svg {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 40px;
    opacity: 0.3;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item:nth-child(4n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 65, 54, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    text-align: center;
    padding: 1rem;
}

.gallery-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--primary);
}

.cta .arrow-icon {
    position: absolute;
    width: 150px;
    height: 120px;
    opacity: 0.2;
}

.cta .arrow-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
}

.cta .arrow-icon:nth-child(2) {
    bottom: 10%;
    right: 5%;
    transform: rotate(-135deg);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .gallery-item:nth-child(4n+1) {
        grid-column: auto;
        grid-row: auto;
    }
}

        /* SECTION 1: About Us with Timeline */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 2rem;
        }

        .about-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1.5rem;
            height: 1.5rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .about-text {
            margin-bottom: 2rem;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 3rem auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item.left {
            left: 0;
        }

        .timeline-item.right {
            left: 50%;
        }

        .timeline-item.left::after {
            right: -13px;
        }

        .timeline-item.right::after {
            left: -13px;
        }

        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .timeline-content h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        /* SECTION 2: Testimonials Slider */
        .testimonials-slider {
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px;
        }

        .testimonial-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1.5rem;
            border: 5px solid var(--primary);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-quote {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            padding: 0 2rem;
        }

        .testimonial-quote::before,
        .testimonial-quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.3;
            position: absolute;
            line-height: 1;
        }

        .testimonial-quote::before {
            left: 0;
            top: -20px;
        }

        .testimonial-quote::after {
            right: 0;
            bottom: -40px;
        }

        .testimonial-name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            color: #777;
            font-size: 0.9rem;
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .testimonials-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .testimonials-dot.active {
            background-color: var(--primary);
        }

        .testimonial-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        .testimonial-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            pointer-events: auto;
        }

        /* SECTION 3: FAQ Accordion */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #f9f9f9;
        }

        .faq-question h4 {
            margin: 0;
            font-size: 1.1rem;
            padding-right: 2rem;
            position: relative;
            font-weight:600;
        }

        .faq-question h4::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1rem;
            height: 1rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .faq-icon {
            width: 20px;
            height: 20px;
            position: relative;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background-color: var(--primary);
            transition: transform 0.3s;
        }

        .faq-icon::before {
            width: 100%;
            height: 2px;
            top: 50%;
            transform: translateY(-50%);
        }

        .faq-icon::after {
            width: 2px;
            height: 100%;
            left: 50%;
            transform: translateX(-50%); 
        }

        .faq-item.active .faq-icon::after {
            transform: translateX(-50%) rotate(90deg);          
        }

        details.faq-item {
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: white;
        }
        
        summary.faq-question {
            padding: 1.5rem;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        summary.faq-question::-webkit-details-marker {
            display: none;
        }
        
        summary.faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #ef4136;
            transition: transform 0.3s;
        }
        
        details[open] summary.faq-question::after {
            content: '−';
        }
        
        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            line-height:150%;
        }

        /* SECTION 4: Contact Us with Form and Map */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-control.textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-info-top {
            margin-bottom: 2rem;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-left: 2rem;
        }

        .contact-info h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1.5rem;
            height: 1.5rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            margin-bottom: 0.25rem;
        }

        .contact-map {
            height: 100%;
            min-height: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* SECTION 5: Party Packages and Events */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .package-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .package-popular {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 1;
        }

        .package-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 1;
        }

        .package-icon svg {
            width: 30px;
            height: 24px;
            fill: white;
        }

        .package-header {
            padding: 2rem 2rem 1rem;
            text-align: center;
            background-color: #f8f8f8;
            position: relative;
        }

        .package-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ef4136'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ef4136'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ef4136'/%3E%3C/svg%3E");
            background-size: cover;
        }

        .package-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
            display: block;
        }

        .package-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .package-content {
            padding: 2rem;
        }

        .package-features {
            margin-bottom: 2rem;
        }

        .package-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            margin-right: 1rem;
            color: var(--primary);
        }

        .package-feature:last-child {
            margin-bottom: 0;
        }

        .package-cta {
            text-align: center;
        }

        /* SECTION 6: Classes Schedule */
        .schedule-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid #ddd;
        }

        .schedule-tab {
            padding: 1rem 2rem;
            margin: 0 0.5rem;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: color 0.3s;
        }

        .schedule-tab:hover {
            color: var(--primary);
        }

        .schedule-tab.active {
            color: var(--primary);
        }

        .schedule-tab.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
        }

        .schedule-content {
            display: none;
        }

        .schedule-content.active {
            display: block;
        }

        .schedule-table {
            width: 100%;
            border-collapse: collapse;
        }

        .schedule-table th,
        .schedule-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .schedule-table th {
            background-color: #f8f8f8;
            font-weight: 600;
        }

        .schedule-table tr:last-child td {
            border-bottom: none;
        }

        .schedule-badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            background-color: #e9ecef;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .badge-beginner {
            background-color: #d1ecf1;
            color: #0c5460;
        }

        .badge-intermediate {
            background-color: #fff3cd;
            color: #856404;
        }

        .badge-advanced {
            background-color: #f8d7da;
            color: #721c24;
        }

        .badge-all {
            background-color: #d4edda;
            color: #155724;
        }

        /* SECTION 7: Team Members */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 60px;
            height: 60px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            z-index: 1;
            opacity: 0.5;
        }

        .team-image {
            height: 300px;
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .team-member:hover .team-image img {
            transform: scale(1.1);
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-name {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }

        .social-link {
            width: 35px;
            height: 35px;
            background-color: #f8f8f8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            transition: background-color 0.3s, color 0.3s;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
        }

        /* SECTION 8: Newsletter and Call to Action */
        .newsletter {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-arrows {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .newsletter-arrow {
            position: absolute;
            width: 100px;
            height: 80px;
            opacity: 0.1;
        }

        .newsletter-arrow:nth-child(1) {
            top: 20%;
            left: 10%;
            transform: rotate(45deg);
        }

        .newsletter-arrow:nth-child(2) {
            bottom: 20%;
            right: 10%;
            transform: rotate(-135deg);
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .newsletter p {
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }

        .newsletter-button {
            padding: 0.75rem 1.5rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-button:hover {
            background-color: #d63026;
        }

        /* SECTION 9: Safety Guidelines */
        .safety {
            background-color: #f8f9fa;
        }

        .safety-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .safety-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .safety-card:hover {
            transform: translateY(-10px);
        }

        .safety-icon {
            background-color: var(--primary);
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

       

        .safety-icon i {
            font-size: 3rem;
            color: white;
        }

        .safety-content {
            padding: 2rem;
        }

        .safety-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            position: relative;
            padding-left: 2rem;
        }

        .safety-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1.5rem;
            height: 1.5rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .safety-list {
            list-style: none;
        }

        .safety-list li {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .safety-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        /* SECTION 10: Featured Events Carousel */
        .events-carousel {
            max-width: 1000px;
            padding-bottom:20px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .events-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .event-slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .event-card {
            display: flex;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .event-image {
            flex: 0 0 40%;
            position: relative;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-date {
            position: absolute;
            top: 20px;
            left: 0;
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 1rem;
            text-align: center;
            font-weight: 600;
        }

        .event-date span {
            display: block;
            font-size: 1.5rem;
            line-height: 1.2;
        }

        .event-content {
            flex: 0 0 60%;
            padding: 2rem;
        }

        .event-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .event-info {
            display: flex;
            margin-bottom: 1rem;
            color: #777;
        }

        .event-info div {
            margin-right: 1.5rem;
            display: flex;
            align-items: center;
        }

        .event-info i {
            margin-right: 0.5rem;
            color: var(--primary);
        }

        .event-desc {
            margin-bottom: 1.5rem;
        }

        .event-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            padding: 0 10px;
        }

        .event-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            pointer-events: auto;
            color: var(--primary);
        }

        /* SECTION 11: Special Programs */
        .programs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .program-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 400px;
        }

        .program-card:hover {
            transform: translateY(-10px);
        }

        .program-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 1;
            transition: transform 0.5s;
        }

        .program-card:hover .program-bg {
            transform: scale(1.1);
        }

        .program-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 30%, transparent);
            z-index: 2;
        }

        .program-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            color: white;
            z-index: 3;
            transition: transform 0.3s;
        }

        .program-card:hover .program-content {
            transform: translateY(-20px);
        }

        .program-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .program-subtitle {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .program-details {
            height: 0;
            overflow: hidden;
            opacity: 0;
            transition: height 0.3s, opacity 0.3s;
        }

        .program-card:hover .program-details {
            height: auto;
            opacity: 1;
        }

        .program-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .program-price {
            font-weight: 700;
            font-size: 1.25rem;
        }

        /* SECTION 12: Stats Counter */
        .stats {
            background-color: var(--primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .stats-arrows {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .stats-arrow {
            position: absolute;
            width: 150px;
            height: 120px;
            opacity: 0.1;
            fill: white;
        }

        .stats-arrow:nth-child(1) {
            top: 20%;
            left: 10%;
            transform: rotate(45deg);
        }

        .stats-arrow:nth-child(2) {
            bottom: 20%;
            right: 10%;
            transform: rotate(-135deg);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* SECTION 13: Membership Plans */
        .membership-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .membership-toggle {
            display: flex;
            align-items: center;
            background-color: #f1f1f1;
            border-radius: 50px;
            padding: 0.5rem;
        }

        .toggle-option {
            padding: 0.75rem 1.5rem;
            cursor: pointer;
            border-radius: 50px;
            font-weight: 600;
            transition: background-color 0.3s, color 0.3s;
        }

        .toggle-option.active {
            background-color: var(--primary);
            color: white;
        }

        .toggle-label {
            display: flex;
            align-items: center;
            margin: 0 1rem;
            font-weight: 600;
        }

        .membership-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .membership-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .membership-card:hover {
            transform: translateY(-10px);
        }

        .membership-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top:35px;
            right: -45px;
            transform: rotate(45deg);
            background-color: var(--primary);
            color: white;
            padding: 0.5rem 3rem;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 1;
        }

        .membership-header {
            background-color: var(--dark);
            padding: 2rem;
            text-align: center;
            color: white;
            position: relative;
        }

        .membership-card.featured .membership-header {
            background-color: var(--primary);
        }

        .membership-icon {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .membership-icon svg {
            width: 30px;
            height: 24px;
            fill: var(--primary);
        }

        .membership-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .membership-price {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .membership-duration {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .membership-features {
            padding: 2rem;
        }

        .membership-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .membership-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .membership-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .membership-list li.disabled {
            color: #999;
            text-decoration: line-through;
        }

        .membership-list li.disabled::before {
            content: '✗';
            color: #999;
        }

        .membership-cta {
            text-align: center;
        }

        /* SECTION 14: Instagram Feed */
        .instagram-feed {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }

        .instagram-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            aspect-ratio: 1/1;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .instagram-item:hover img {
            transform: scale(1.1);
        }

        .instagram-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(239, 65, 54, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-icon {
            color: white;
            font-size: 2rem;
        }

        .instagram-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2rem;
        }

        .instagram-btn i {
            margin-right: 0.5rem;
        }

        /* SECTION 15: Rules and Waiver */
        .rules-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .rules-content {
            position: relative;
        }

        .rules-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 2rem;
        }

        .rules-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1.5rem;
            height: 1.5rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .rules-list {
            list-style: none;
        }

        .rules-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .rules-list li::before {
            content: '!';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .waiver-box {
            background-color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .waiver-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .waiver-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .waiver-subtitle {
            color: #777;
        }

        .waiver-form {
            margin-top: 1.5rem;
        }

        .form-check {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .form-check-input {
            margin-right: 0.5rem;
            margin-top: 0.25rem;
        }

        /* SECTION 16: Location and Hours */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .location-map {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            min-height: 400px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .location-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .location-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 2.5rem;
        }

        .location-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 2rem;
            height: 2rem;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.59 33.89'%3E%3Cpath fill='%23ef4136' d='M43.59,18.13L33.12,0l-10.47,18.13h5.47v1.3c0,2.46,0,4.45-2.45,4.45H0v10h33.67c2.46,0,4.45-1.99,4.45-4.45v-11.3h5.47Z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .location-address {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .location-hours {
            margin-bottom: 2rem;
        }

        .hours-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .hours-list {
            list-style: none;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed #ddd;
        }

        .hours-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .day {
            font-weight: 600;
        }

        .time.special {
            color: var(--primary);
            font-weight: 600;
        }

        .location-directions {
            display: flex;
            gap: 1rem;
        }

        /* Responsive Styles for all sections */
        @media (max-width: 992px) {
            .about-grid,
            .contact-grid,
            .rules-container,
            .location-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item.left::after,
            .timeline-item.right::after {
                left: 18px;
            }
            
            .timeline-item.right {
                left: 0;
            }
            
            .event-card {
                flex-direction: column;
            }
            
            .event-image {
                flex: 0 0 200px;
            }
        }

        @media (max-width: 576px) {
            .safety-grid {
                grid-template-columns: 1fr;
            }
            
            .membership-toggle {
                flex-direction: column;
                background-color: transparent;
                padding: 0;
            }
            
            .toggle-option {
                width: 100%;
                margin-bottom: 0.5rem;
                text-align: center;
            }
        }

/*REVEALS*/
/* Base animation setup */
.reveal {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .reveal.active {
    opacity: 1;
  }
  
  /* Fade animations */
  .fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }
  
  .fade-in.active {
    opacity: 1;
  }
  
  /* Slide animations */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-down.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  .fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Scale animations */
  .fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-scale.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
  }
  
  .zoom-in.active {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Rotation animations */
  .fade-in-rotate {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-rotate.active {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  
  /* Flip animations */
  .flip-in-x {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 0.6s ease-out;
  }
  
  .flip-in-x.active {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
  }
  
  .flip-in-y {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 0.6s ease-out;
  }
  
  .flip-in-y.active {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
  }
  
  /* Bounce effect */
  .bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .bounce-in.active {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Timing variations */
  .delay-100 { transition-delay: 0.1s; }
  .delay-200 { transition-delay: 0.2s; }
  .delay-300 { transition-delay: 0.3s; }
  .delay-400 { transition-delay: 0.4s; }
  .delay-500 { transition-delay: 0.5s; }
  
  /* Duration variations */
  .duration-300 { transition-duration: 0.3s; }
  .duration-500 { transition-duration: 0.5s; }
  .duration-700 { transition-duration: 0.7s; }
  .duration-1000 { transition-duration: 1s; }
  
  /* Distance variations for larger movements */
  .fade-in-up-large {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
  }
  
  .fade-in-up-large.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .fade-in-left-large {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease-out;
  }
  
  .fade-in-left-large.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Stagger effects for multiple elements */
  .stagger-item:nth-child(1) { transition-delay: 0.1s; }
  .stagger-item:nth-child(2) { transition-delay: 0.2s; }
  .stagger-item:nth-child(3) { transition-delay: 0.3s; }
  .stagger-item:nth-child(4) { transition-delay: 0.4s; }
  .stagger-item:nth-child(5) { transition-delay: 0.5s; }
  .stagger-item:nth-child(6) { transition-delay: 0.6s; }
  
  /* Utility for reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .fade-in,
    .fade-in-up,
    .fade-in-down,
    .fade-in-left,
    .fade-in-right,
    .fade-in-scale,
    .zoom-in,
    .fade-in-rotate,
    .flip-in-x,
    .flip-in-y,
    .bounce-in,
    .fade-in-up-large,
    .fade-in-left-large {
      transition: none;
    }
  }