/* ===================================
   Hello Turf - CSS Stylesheet
   Modern, Conversion-Optimized Design
   =================================== */

/* === CSS Variables === */
:root {
    /* Brand Colors */
    --primary-blue: #0066CC;
    --primary-green: #2ECC71;
    --dark-green: #27AE60;
    --light-blue: #3498DB;
    --navy: #1A1A2E;
    --charcoal: #2C3E50;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #6C757D;
    --black: #000000;
    
    /* Accent Colors */
    --accent-orange: #FF6B35;
    --success: #28A745;
    --warning: #FFC107;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--light-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.6);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
    padding: 16px 32px;
}

/* === Navigation === */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-green);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    margin-top: 80px;
    padding: 60px 0;
    overflow: hidden;
    background: var(--navy);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-canvas canvas {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(26, 26, 46, 0.3) 50%, rgba(46, 204, 113, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(0px);
}

.hero-content { 
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-logo {
    height: 300px;
    margin: auto;
    display: block;
}

.hero-text {
    max-width: 750px;
    margin: 0 auto;
    color: var(--white);
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.20rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-green);
    filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.5));
}

.usa-flag-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.3));
}

.feature-item.feature-stars {
    flex-direction: column;
    gap: 2px;
}

.star-rating {
    display: flex;
    gap: 1px;
    align-items: center;
}

.star-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.4));
    animation: starPulse 2s ease-in-out infinite;
}

.star-icon:nth-child(1) {
    animation-delay: 0s;
}

.star-icon:nth-child(2) {
    animation-delay: 0.1s;
}

.star-icon:nth-child(3) {
    animation-delay: 0.2s;
}

.star-icon:nth-child(4) {
    animation-delay: 0.3s;
}

.star-icon:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.4));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
    }
}

/* === Section Styles === */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--navy);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* === About Section === */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--charcoal);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* === Services Section === */
.services-section {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-benefits li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--charcoal);
}

.service-benefits li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.service-card .btn {
    margin-top: auto;
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* === Why Choose Section === */
.why-choose-section {
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card:nth-child(7) {
    grid-column: 2;
}

.why-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--dark-gray);
    margin: 0;
}

/* === Gallery Section === */
.gallery-section {
    background: var(--light-gray);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

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

/* === Testimonials Section === */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Splide Slider Customization */
.splide__arrow {
    background: var(--primary-green);
    opacity: 0.8;
    transition: var(--transition);
}

.splide__arrow:hover {
    opacity: 1;
    background: var(--dark-green);
}

.splide__arrow svg {
    fill: var(--white);
}

.splide__pagination__page {
    background: var(--medium-gray);
}

.splide__pagination__page.is-active {
    background: var(--primary-green);
}

.splide__slide {
    display: flex;
    align-items: stretch;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--warning);
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--navy);
}

.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* === Quote Form Section === */
.quote-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.quote-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--white);
}

.quote-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-note {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 10px;
}

/* === Contact & Quote Section (Merged) === */
.contact-quote-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.contact-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* Quote Form Container */
.quote-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-intro p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.quote-benefits-compact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.benefit-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.benefit-compact i {
    color: var(--primary-green);
    font-size: 1rem;
}

.contact-quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.contact-map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* === Contact Section === */
.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    min-width: 30px;
}

.contact-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary-blue);
}

.contact-item p {
    color: var(--dark-gray);
    margin: 0;
}

.social-links h4 {
    color: var(--navy);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.contact-map iframe {
    border-radius: 15px;
    width: 100%;
}

/* === Footer === */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-green);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

.footer-credit {
    font-size: 0.9rem;
}

/* === Dropdown Menu === */
.dropdown {
    position: relative;
}

.dropdown > a i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 10px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    padding-left: 25px;
}

/* === Service Pages === */
.service-hero {
    padding: 180px 0 120px;
    text-align: center;
    color: var(--white);
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-details {
    padding: 80px 0;
    background: var(--white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-main-content h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.service-main-content h3 {
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-main-content p {
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-benefits-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--charcoal);
}

.service-benefits-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

.turf-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.option-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.option-card h4 {
    color: var(--navy);
    margin-bottom: 10px;
}

.option-card p {
    margin: 0;
    font-size: 0.95rem;
}

.process-list {
    margin: 30px 0;
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--charcoal);
}

.process-list strong {
    color: var(--primary-blue);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h3 {
    color: var(--white);
    margin: 0 0 15px 0;
}

.cta-box p {
    color: var(--white);
    margin-bottom: 25px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.facts-list {
    list-style: none;
    padding: 0;
}

.facts-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--charcoal);
    border-bottom: 1px solid var(--medium-gray);
}

.facts-list li:last-child {
    border-bottom: none;
}

.facts-list i {
    color: var(--primary-green);
    font-size: 1.1rem;
    width: 20px;
}

.cta-sidebar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
}

.cta-sidebar h3,
.cta-sidebar p {
    color: var(--white);
}

.cta-sidebar .btn {
    width: 100%;
    margin-bottom: 10px;
}

.services-links {
    list-style: none;
    padding: 0;
}

.services-links li {
    margin-bottom: 10px;
}

.services-links a {
    color: var(--charcoal);
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.services-links a:hover {
    background: var(--white);
    color: var(--primary-green);
    padding-left: 20px;
}

/* Responsive for Service Pages */
@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* === Scroll to Top Button === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
}

/* === Fixed Social Media Widget === */
.fixed-social-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease, bottom 0.3s ease;
}

.fixed-social-widget.hidden {
    opacity: 0;
    visibility: hidden;
}

.fixed-social-widget.shift-up {
    bottom: 95px; /* Shift up to make room for scroll button (50px button + 15px gap + 30px original bottom) */
}

.fixed-social-widget .social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.fixed-social-widget .social-btn.facebook {
    background: #1877F2;
}

.fixed-social-widget .social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.fixed-social-widget .social-btn:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* === Responsive Design === */

/* Tablets */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-content,
    .quote-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-card:nth-child(7) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Footer responsive for tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-col:first-child .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-col:first-child .footer-social {
        justify-content: center;
    }
    
    /* Tablet Navigation */
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu li a {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .nav-cta {
        padding: 8px 20px !important;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile dropdown styles */
    .dropdown {
        position: relative;
    }
    
    .dropdown > a {
        cursor: pointer;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0;
        padding: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li a {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .dropdown-menu li a:hover {
        background: var(--white);
        padding-left: 35px;
    }
    
    .nav-cta {
        margin: 10px 20px;
        display: inline-block;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 5px 0;
    }
    
    .hero {
        min-height: 80vh;
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .star-icon {
        width: 16px;
        height: 16px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card:nth-child(7) {
        grid-column: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer responsive for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col:first-child {
        grid-column: auto;
    }
    
    .footer-logo {
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-social,
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .fixed-social-widget {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .fixed-social-widget.shift-up {
        bottom: 85px; /* Adjust for smaller button on tablets */
    }
    
    .fixed-social-widget .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-card,
    .quote-form-wrapper {
        padding: 25px;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-col p {
        font-size: 0.9rem;
    }
    
    .footer-col h4 {
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .fixed-social-widget {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .fixed-social-widget.shift-up {
        bottom: 75px; /* Adjust for smaller button on mobile */
    }
    
    .fixed-social-widget .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* === Accessibility === */
:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

