/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --stadium-green: #1a4d2e;
    --stadium-green-dark: #0f3a24;
    --stadium-green-light: #2d5f3f;
    --slate-grey: #3a4a5c;
    --slate-grey-light: #4f5d6e;
    --action-orange: #ff6b35;
    --action-orange-hover: #ff5018;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-dark: #1a1a1a;
    --border-light: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-display: 'Teko', sans-serif;
    --font-body: 'Barlow', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(15, 58, 36, 0.98), rgba(15, 58, 36, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid var(--action-orange);
    animation: slideDown 0.6s ease-out;
    padding: 10px 0; /* Reduced padding */
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 15px 20px 15px 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-15%);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-15%);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-image {
    height: 160px;
    width: auto;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--action-orange);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--action-orange);
    color: var(--white);
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-cta:hover {
    background: var(--action-orange-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
}

.sticky-cta svg {
    transition: transform 0.3s ease;
}

.sticky-cta:hover svg {
    transform: translateX(5px);
}

/* Hero Carousel */
.hero-intro {
    background-color: var(--white); /* Or a very light grey */
    padding: 40px 20px 30px; /* Generous top padding to clear fixed headers */
    text-align: center;
    margin-top: 70px; /* Matches your previous carousel margin */
}

.hero-intro .container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-intro .hero-title {
    color: var(--stadium-green-dark); /* Dark green for readability */
    font-size: 56px; /* Slightly smaller than the overlay version for better flow */
    text-shadow: none; /* Text shadow isn't needed on solid backgrounds */
    margin-bottom: 25px;
    animation: none; /* Removing entry animation for static text usually feels cleaner */
}

.hero-intro .hero-description {
    color: #333; /* Darker text for contrast on white */
    max-width: 750px;
    margin-bottom: 0;
    animation: none;
}
.hero-carousel {
    position: relative;
    height: 60vh; /* Reduced height since the main text is gone */
    min-height: 650px;
    margin-top: 0; /* Removed margin because the intro section now handles spacing */
    overflow: hidden;
    background: var(--stadium-green-dark);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide:first-child .carousel-content {
    top: 50%; /* Keeps the button perfectly centered */
}

/* Keep the H2s inside the other slides looking good */
.carousel-content h2.hero-title {
    font-size: 42px; /* Sub-headings should be smaller than the main H1 */
    letter-spacing: 2px;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    font-weight: 500;
}

.placeholder-icon {
    font-size: 120px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.4;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 58, 36, 0.85) 0%,
        rgba(26, 77, 46, 0.75) 50%,
        rgba(45, 95, 63, 0.65) 100%
    );
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: inline-block;
    background: var(--action-orange);
    color: var(--white);
    padding: 18px 45px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    background: var(--action-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.landing-cta {
    display: inline-block;
    background: var(--action-orange);
    color: var(--white);
    padding: 18px 45px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.landing-cta:hover {
    background: var(--action-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(5px);
}

.carousel-control:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: var(--action-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.indicator.active,
.indicator:hover {
    background: var(--action-orange);
    width: 70px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
    position: relative;
}

.section-accent {
    width: 100px;
    height: 6px;
    background: var(--action-orange);
    margin: 0 auto 30px;
    border-radius: 3px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    color: var(--stadium-green);
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 45px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--stadium-green), var(--action-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 77, 46, 0.15);
    border-color: var(--stadium-green-light);
}

.card-icon {
    color: var(--action-orange);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-title a {
    color: var(--stadium-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--action-orange);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-grey);
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: var(--stadium-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--action-orange);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 14px;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--stadium-green-dark) 0%, var(--stadium-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, 50px);
    }
}

.section-title-alt {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--action-orange);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.benefit-item h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Footer */
.contact-footer {
    background: var(--stadium-green-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--action-orange);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--action-orange);
}

.contact-item strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.phone-link {
    color: var(--action-orange);
    text-decoration: none;
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--action-orange-hover);
    text-decoration: underline;
}

.contact-hours {
    font-size: 14px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
}

.email-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--action-orange);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--action-orange);
    transform: translateY(-3px);
}

.map-heading {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--action-orange);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--stadium-green-light);
}

.footer-bottom {
    background: var(--stadium-green-dark);
    border-top: 2px solid var(--stadium-green-light);
    padding: 25px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--action-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--action-orange-hover);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title,
    .section-title-alt {
        font-size: 42px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .carousel-control {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control.prev {
        left: 15px;
    }
    
    .carousel-control.next {
        right: 15px;
    }
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        font-size: 20px;
        padding: 14px 32px;
    }
    
    .section-title,
    .section-title-alt {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 26px;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 18px;
    }
    
    .phone-link {
        font-size: 22px;
    }
}
