/* AI: Base styles and resets */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* AI: Variables for cursor light effect */
            --cursor-x: 50vw;
            --cursor-y: 50vh;
        }

        html {
            scroll-behavior: smooth;
        }

        @font-face {
            font-family: 'Sport Master';
            src: url('../fonts/sport-master.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Space Bold';
            src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Space Regular';
            src: url('../fonts/SpaceGrotesk-Regular.ttf') format('truetype');
        }

        @font-face {
            font-family: 'Space Light';
            src: url('../fonts/SpaceGrotesk-Light.ttf') format('truetype');
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #ebebeb;
            color: #1a1a1a;
            position: relative; /* AI: Needed for cursor effect positioning */
        }

        /* AI: Cursor highlight effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at var(--cursor-x) var(--cursor-y),
                rgba(200, 200, 200, 0.1) 0%,
                rgba(200, 200, 200, 0) 25vw,
                transparent 40vw
            );
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease-out;
        }

        @media (pointer: fine) {
            body:hover::before {
                opacity: 1;
            }
        }

        /* AI: Navigation Bar Enhancements */
        nav {
            position: sticky;
            top: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background-color: rgba(235, 235, 235, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-brand {
            font-family: 'Sport Master', sans-serif;
            font-size: clamp(18px, 2vw, 22px);
        }

        .nav-links {
            font-family: 'Space Light', serif;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            font-size: clamp(16px, 1.5vw, 20px);
        }

        .nav-links a {
            text-decoration: none;
            color: #1a1a1a;
            transition: color 0.2s ease;
        }
        .nav-links a:hover {
            color: #870d0d;
        }

        /* AI: Enhanced CTA Button in Nav */
        .nav-cta {
            padding: 0.5rem 1.25rem;
            background: #870d0d;
            color: #ebebeb;
            text-decoration: none;
            border-radius: 4px;
            font-family: 'Space Regular', serif;
            font-size: clamp(14px, 1.2vw, 16px);
            transition: background-color 0.3s ease;
            margin-left: 1rem;
        }

        .nav-cta:hover {
            background: #ff2222;
            color: #fff;
        }

        /* Core content container */
        .content-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 2rem;
            position: relative;
            isolation: isolate;
        }

        /* AI: Responsive Title Styling */
        .title, .overlap-title {
            font-family: 'Sport Master', sans-serif;
            font-size: 14.5vw;
            text-align: center;
            letter-spacing: -0.3rem;
            margin-bottom: -5.5vw;
            position: relative;
            margin: 0;
            padding: 0;
            z-index: 1;
            color: #1a1a1a;
        }

        .overlap-title {
            z-index: 3;
        }

        .hero-image {
            width: 50vw;
            height: 65vw;
            background-image: url('../images_/hero-image-v5.webp');
            background-size: cover;
            background-position: center;
            border-radius: 4vw;
            border: 0.3vw solid #ebebeb; /* Clean white border without additional effects */
            position: relative;
            z-index: 2;
            margin-top: -4vw;
        }

        .icon-column {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: -40vw;
            margin-right: -65vw;
            padding-bottom: 18vw;
            max-width: 80px; /* AI: Constrain icon size */
        }
        .circle-yt, .circle-ig {
             width: clamp(40px, 7vw, 70px);
             height: clamp(40px, 7vw, 70px);
             border-radius: 50%;
             background-size: cover;
             background-position: center;
             transition: transform 0.2s ease-out;
        }
        .circle-yt:hover, .circle-ig:hover {
            transform: scale(1.1);
        }
        .circle-ig { background-image: url('../images_/logo-ig-alt.png'); }
        .circle-yt { background-image: url('../images_/logo-yt-alt.png'); }

        .parallax-section {
            position: relative;
            min-height: 100vh;
            background-color: #1a1a1a;
            border-radius: 30px 30px 0 0;
            margin-top: -50px;
            z-index: 10;
            color: white;
            padding: 4rem 2rem; /* AI: Increased top padding */
        }

        /* AI: Universal Section Header */
        .section-header {
            font-size: clamp(2rem, 5vw, 3.5rem);
            text-align: center;
            color: #ebebeb;
            margin-bottom: 1rem;
            font-family: 'Space Regular', serif;
        }

        .parallax-content-header-2 {
            font-size: clamp(1.2rem, 2.85vw, 2rem);
            text-align: center;
            color: #ebebeb;
            margin-bottom: 2rem;
            font-family: 'Space Regular', serif;
        }

        .parallax-content {
            font-size: clamp(1rem, 2.65vw, 1.8rem);
            text-align: center;
            color: #ebebeb;
            font-family: 'Space Light', serif;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .parallax-content-highlight {
            font-size: clamp(1rem, 2.65vw, 1.8rem);
            text-align: center;
            color: #ebebeb;
            margin-top: 1.5rem;
            margin-bottom: 3rem;
            font-family: 'Space Bold', serif;
        }

        /* AI: Refactored image handling */
        .content-image-wrapper {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding-bottom: 4vw;
            flex-wrap: wrap; /* AI: Allow wrapping on small screens */
        }

        /* AI: Lazy Loading Styles for Gallery */
        .gallery-image {
            background-color: #2a2a2a; /* Placeholder color */
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            border-radius: 1vw;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .gallery-image.loaded {
            opacity: 1;
        }
        .img-rect { width: 35vw; height: 25vw; min-width: 280px; }
        .img-sq { width: 22.5vw; height: 22.5vw; min-width: 280px; }
        .img-vert { width: 22.5vw; height: 28.5vw; min-width: 280px; }
        .img-toned { filter: contrast(80%) grayscale(40%) brightness(85%) sepia(5%); }

        /* AI: Enhanced Toolkit & Software Section Styling */
        .services-section { /* AI: Generic class for toolkit, packages, software */
            color: #fff;
            margin: 4rem 0;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 2rem auto 0;
        }
        .card {
            padding: 1.5rem;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.02);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            border-radius: 8px;
        }
        .card:hover {
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-5px);
        }
        .card h3 {
            font-family: 'Space Regular', serif;
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: #fff;
        }
        .card p, .card ul {
            font-family: 'Space Light', serif;
            color: rgba(255,255,255,0.6);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .card ul { list-style-position: inside; padding-left: 0.5rem; }
        .card ul li { margin-bottom: 0.5rem; }
        .card-cta {
            font-family: 'Space Regular', serif;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.75rem 1rem;
            text-align: center;
            border-radius: 4px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            margin-top: auto; /* AI: Pushes button to bottom */
        }
        .card-cta:hover {
            background-color: #870d0d;
        }
        /* AI: Specific styling for software cards */
        .software-card p {
            font-size: 0.8rem; /* Smaller text for dense info */
            color: rgba(255,255,255,0.5);
        }
        .software-card h3 span {
            font-family: 'Space Light', serif;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            margin-left: 0.5rem;
        }


        /* AI: New Booking Section */
        #booking-section {
            padding: 4rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin: 4rem 0;
        }
        .booking-container {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }
        .booking-widget {
            flex: 1;
            max-width: 450px;
            min-width: 320px;
        }

        .stats-section, .contact-section { margin-top: 4rem; }
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .stats-card {
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            aspect-ratio: 4/3;
        }
        .stats-card h3 {
            font-size: clamp(0.9rem, 1.5vw, 1.2rem);
            font-family: 'Space Light', serif;
            font-weight: normal;
            margin-bottom: 1rem;
            opacity: 0.8;
        }
        .stat-value {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-family: 'Space Bold', serif;
            line-height: 1;
        }
        .contact-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: #870d0d;
            color: #ebebeb;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            margin: 1rem auto;
            text-align: center;
            font-family: 'Space Regular', serif;
            transition: background-color 0.3s ease;
        }
        .contact-button:hover { background: #ff2222; }

        .video-container {
            max-width: 900px;
            margin: 2rem auto;
            width: 90%;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            width: 100%;
            border-radius: 10px;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            nav { padding: 1rem; }
            .content-wrapper { padding-top: 1rem; margin-bottom: -12vw; }
            .icon-column { display: none; }
            .parallax-section { padding: 15vw 1rem 1rem 1rem; }
            .booking-container, .content-image-wrapper { flex-direction: column; gap: 2rem; }
            .gallery-image, .img-rect, .img-sq, .img-vert { width: 90vw; height: 60vw; min-width: unset; }
            .img-sq { height: 90vw; }
            /* AI: Ensure nav links are visible on small screens */
            .nav-links { gap: 1rem; }
            .nav-cta { margin-left: 0.5rem; padding: 0.4rem 0.8rem; }
        }

/* New Hero Section Styles */
.hero-text-container {
    text-align: center;
    padding: 2rem;
    background-color: #f0f0f0; /* A slightly different background to distinguish it */
    width: 100%;
}

.hero-subtitle {
    font-family: 'Space Regular', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
    color: #333;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Funnel Section Styles */

.funnel-section {

padding: 4rem 2rem;

}

  

.funnel-grid {

display: grid;

grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

gap: 2rem;

max-width: 1400px;

margin: 0 auto;

}

  

.funnel-card {

text-decoration: none;

color: inherit;

background-color: #ebebeb;

border-radius: 8px;

overflow: hidden;

box-shadow: 0 4px 15px rgba(0,0,0,0.05);

transition: transform 0.3s ease, box-shadow 0.3s ease;

display: flex;

flex-direction: column;

}

  

.funnel-card:hover {

transform: translateY(-5px);

box-shadow: 0 8px 30px rgba(0,0,0,0.1);

}

  

.funnel-image {

width: 100%;

height: 200px;

object-fit: cover;

}

  

.funnel-content {

padding: 1.5rem;

}

  

.funnel-content h3 {

font-family: 'Space Bold', sans-serif;

font-size: 1.5rem;

margin-bottom: 0.75rem;

color: #1a1a1a

}

  

.funnel-content p {

font-family: 'Space Light', sans-serif;

font-size: 1rem;

line-height: 1.6;

color: #1a1a1a;

}