/* Company Websites Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0091ff;
    --dark: #000000;
    --light: #ffffff;
    --gray: #666;
    --card-bg: #fafafa;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: var(--dark);
}

/* Hero Section */
.company-hero {
      width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
     background: var(--dark);
    background-image: 
        radial-gradient(circle at center, transparent 0%, var(--dark) 70%),
        linear-gradient(rgba(41, 43, 41, 0.7) .1em, transparent .1em), 
        linear-gradient(90deg, rgba(40, 43, 40, 0.7) .1em, transparent .1em);
    background-size: 100% 100%, 3em 3em, 3em 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.company-hero-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.company-hero-header {
    text-align: center;
    max-width: 900px;
}

.company-hero-subtitle {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.company-hero-title {
    font-size: 5rem;
    font-weight: 400;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.company-hero-subtext {
    font-size: 1.3rem;
     color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.company-hero-subtext span {
    font-weight: 600;
    color:white;
    color:var(--primary)
}

.company-hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.company-cta {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
}

.company-learn-more {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 1s ease;
    overflow: hidden;
    will-change: transform;
    cursor: pointer;
}

.company-learn-more::before {
    content: '';
    inset: 0;
    height: 100%;
    width: 100%;
    background: white;
    position: absolute;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 1s ease;
    z-index: -1;
    will-change: clip-path;
}

.company-learn-more:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.company-learn-more:hover {
    color: black;
}

/* Main Demo Section */
.main {
    min-height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    background:rgb(9,9,9);
    position: relative;
}
.line-1 {
    height:1px;
    width: 100%;
    position: absolute;
    top:25%;
    background:#374f40;
    z-index: 0;
}
.line-2 {
    height:100%;
    width: 1px;
    position: absolute;
    left:10%;
    background:#374f40;
}
.line-3 {
    height:100%;
    width: 1px;
    position: absolute;
    right:10%;
    background:#374f40;
}
.hero-sample {
            height:850px;
            width: 100%;
            max-width:1200px;
            border-radius: 24px;
            overflow: hidden;
            margin:0 auto;
            position: relative;
            border:1px solid rgb(20,20,20);
            filter: blur(10px);
            opacity: 0.5;
            z-index: 100;
            
        }

        .hero-sample::before {
            content: '';
            position: absolute;
            inset: 0;
            height: 100%;
            width: 100%;
            background-image:url('./pexels-vaan-photos-12087398.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            filter: brightness(0.4);
        }
        .navigation-sample {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding:15px 25px;
            position: relative;
            height:100px;
        }
        @media(max-width:1000px) {
            .navigation-sample {
                display: none
            }
        }
        .logo-sample img {
            position: absolute;
            top: -50px;
        }
        .hero-sample ul {
            display: flex; gap:20px;
            margin-left: 150px;
        }
        .hero-sample ul li {
            display: inline;
            color:white;
            font-size: 1.4rem;
            font-weight: 400;
            cursor: pointer;
        }
        .hero-sample-cta, .hero-sample button {
            min-width:125px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding:8px;
            outline: none;
            background:green;
            color:white;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 4px;
            border:none;
            min-height: 40px;
            cursor: pointer;
        }
        .hero-sample-content {
            height: calc(850px - 100px);
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            gap: 4rem;
        }
        .hero-sample-left {
            flex: 1;
            max-width: 600px;
        }
        .hero-sample-left h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            color: white;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
        }
        .hero-sample-left p {
            color:rgb(255, 254, 254);
            font-size: 1.4rem;
            max-width:450px;
            margin-bottom: 40px;
        }
        .hero-sample-left .lawn-care {
            color: #4ade80;
            font-style: italic;
            font-family: 'Inter Tight', sans-serif;
        }
 
        .hero-sample-left .hero-sample-learn-more-btn {
            background: transparent;
            border: 2px solid white;
            margin-top: 1rem;
            transition: all 0.3s ease;
            width: 70%;
            background: linear-gradient(to right, white, rgb(148, 188, 148) );
            color: green;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .hero-sample-right {
            flex: 0 0 400px;
            background: rgba(0,0,0, 0.1);
            backdrop-filter: blur(8px);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            border:2px solid rgba(255,255,255,0.1);
        }
        .hero-sample-right h2 {
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        .hero-sample-right p {
            color: #dadada;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        .hero-sample-contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .hero-contact-form .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .hero-contact-form .form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #dadada;
            margin-top: 10px;
        }
       .hero-contact-form .form-group input,
       .hero-contact-form .form-group textarea {
            padding: 0.75rem;
            border: 1px solid #000000;
            border-radius: 6px;
            background:rgb(20, 20, 20);
            font-size: 1rem;
            font-family: 'Inter Tight', sans-serif;
            transition: border-color 0.3s ease;
            color:#dadada !important;
        }

        .hero-contact-form .form-group input:focus,
       .hero-contact-form .form-group textarea:focus {
            outline: none;
            border-color: green;
            background:rgb(20, 20, 20);
        }
        .hero-contact-form .form-group textarea {
            resize: none;
            min-height: 100px;
        }
       .hero-contact-form .hero-sample-submit-btn {
            background: green;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 100%;
            margin-top: 10px;
        }
        .hero-sample a {
            text-decoration: none;
            color: black;
        }

/* Company Website Features Section */
.company-features-section {
    background: var(--light);
    padding: 8rem 5%;
}

.company-features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.company-features-content h2 {
    font-size: 4rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.company-features-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.company-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-feature-item {
    font-size: 1.05rem;
    color: var(--dark);
    padding-left: 2rem;
    position: relative;
}

.company-feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.company-features-image img {
    width: 100%;
    height: auto;
    display: block;
}

.company-features-image {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:  5px 5px 10px #bebebe,
    -5px -5px 10px #ffffff;
}

.company-features-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    will-change: transform;
    transition: transform 400ms ease;
    display: block;

}

.company-features-image:hover img {
    transform: scale(1.05);
}

.company-features-image p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

/* Reviews Section */
.company-reviews-section {
    background: var(--dark);
    padding: 8rem 5%;
}

.company-reviews-heading {
    font-size: 4rem;
    font-weight: 500;
    color: var(--light);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.company-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.company-reviews-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-review-stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.company-review-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.company-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-review-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.company-review-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-review-author-info {
    flex: 1;
}

.company-review-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.3rem;
}

.company-review-author-company {
    font-family: "Bebas Neue", sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* FAQ Section */
.company-faq-section {
    background: var(--light);
    padding: 8rem 5%;
    position: relative;
    min-height: 110vh;
}

.company-faq-heading {
    font-size: 4rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.company-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.company-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid #e0e0e0;
}

.company-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.company-faq-question {
    width: 100%;
    padding: 1.5rem 2rem 0.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.company-faq-answer {
    max-height: none;
    opacity: 1;
}

.company-faq-item.active .company-faq-answer {
    max-height: none;
    opacity: 1;
}

.company-faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
    padding: 0 2rem 1.5rem 2rem;
}

/* Responsive */
@media (max-width: 943px) {
    .company-hero {
        padding: 8rem 5% 4rem;
        min-height: auto;
    }

    .company-hero-title {
        font-size: 3rem;
    }

    .company-hero-subtext {
        font-size: 1.1rem;
    }

    .company-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .company-cta,
    .company-learn-more {
        width: 100%;
        text-align: center;
    }

    .company-features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .company-features-content h2 {
        font-size: 2.5rem;
    }

    .company-reviews-heading,
    .company-faq-heading {
        font-size: 2.5rem;
    }

    .company-review-text {
        font-size: 1.1rem;
    }

    .company-faq-section {
        padding: 4rem 5%;
    }

    .company-faq-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .company-faq-question {
        padding: 1.2rem 1.5rem 0.4rem 1.5rem;
        font-size: 1rem;
    }

    .company-faq-answer p {
        font-size: 0.95rem;
        padding: 0 1.5rem 1.2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .company-hero-title {
        font-size: 2rem;
    }

    .company-reviews-heading,
    .company-faq-heading {
        font-size: 2rem;
    }

    .company-review-text {
        font-size: 1rem;
    }

    .company-faq-question {
        padding: 1rem 1.2rem 0.3rem 1.2rem;
        font-size: 0.95rem;
    }

    .company-faq-answer p {
        font-size: 0.9rem;
        padding: 0 1.2rem 1rem 1.2rem;
    }
}

