/* Variables */
:root {
    --primary: #125663;
    --accent-green: #80E27A;
    --accent-cyan: #45F5E4;
    --white: #FFFFFF;
    --text-grey: #385453;
    --bg-light: #F5F3EF;
    --bg-card: #F9F8F6;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-grey);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.5rem;
}

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

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

p {
    margin-bottom: 1rem;
    color: var(--text-grey);
}

.accent-text {
    color: var(--accent-green);
}

.tag {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: #6dd06a;
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-outline {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--primary);
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background-color: #6dd06a;
    border-color: #6dd06a;
}

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

.btn-dark:hover {
    background-color: #0e4650;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: var(--accent-green);
    color: var(--primary);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.cta-arrow-wrapper {
    position: relative;
    display: inline-block;
    margin: 1.5rem 0 1rem;
}

.cta-arrow {
    position: absolute;
    width: 45px;
    height: auto;
    top: -35px;
    right: -35px;
    stroke: var(--accent-green);
    stroke-width: 2.5;
    fill: none;
    animation: arrow-float 2s ease-in-out infinite;
}

@keyframes arrow-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(3px) rotate(2deg); }
}

.calendly-btn {
    display: inline-block;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    background-color: var(--primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    background-color: var(--white);
}

.mobile-nav-cta {
    display: none;
    background-color: var(--accent-green) !important;
    color: var(--primary) !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-cta.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Hero */
.hero {
    padding: 4rem 0 3rem;
    background-color: var(--primary);
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero .accent-text {
    color: var(--accent-green);
}

.hero-sub {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
}

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

/* Hero Carousel */
.hero-carousel {
    margin-top: 2rem;
    overflow: hidden;
}

.hero-carousel .carousel-track {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite;
}

.hero-carousel .carousel-item {
    width: 200px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Value Section - "The Reality" */
.value-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.value-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.value-section .subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
}

/* Before/After Graphic */
.before-after-container {
    margin: 3rem 0;
    text-align: center;
}

.before-after-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.before-after-item {
    position: relative;
}

.before-after-label {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.before-after-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .before-after-grid {
        gap: 1rem;
    }

    .before-after-title {
        font-size: 1.75rem;
    }

    .before-after-label {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
    }
}

/* What You Get Section */
.what-you-get {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
}

.what-you-get h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.lead-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.lead-image img {
    width: 100%;
    height: auto;
}

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

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-grey);
}

.benefits-list li::before {
    content: "•";
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.value-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Who We Serve Section */
.who-we-serve-section {
    padding: 5rem 0;
    background-color: var(--primary);
}

.who-we-serve-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.who-we-serve-left h2 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.who-we-serve-left h2 span {
    display: block;
}

.who-we-serve-cta {
    text-align: center;
    margin-top: 3rem;
}

.trades-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trade-card {
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--primary);
}

.trade-card.white {
    background-color: var(--white);
}

.trade-card.green {
    background-color: var(--accent-green);
}

/* Power Behind Our Success */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-section .bio-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-grey);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.owner-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.owner-card img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    filter: grayscale(100%);
}

.owner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.owner-card .title {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--primary);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.testimonials-section h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
}

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    background: transparent;
    color: var(--accent-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav button:hover {
    background-color: var(--accent-green);
    color: var(--primary);
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 700px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    background-color: var(--bg-light);
    border-radius: var(--radius);
    padding: 2rem;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card .client-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.testimonial-card .client-business {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-grey);
    font-style: italic;
}

/* Pricing */
.pricing-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.pricing-section .section-header h2 {
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background-color: var(--accent-green);
}

.pricing-card.popular .plan-name,
.pricing-card.popular .price,
.pricing-card.popular .price-period,
.pricing-card.popular .whats-included,
.pricing-card.popular .features li {
    color: var(--primary);
}

.pricing-card.popular .btn {
    background-color: var(--primary);
    color: var(--white);
}

.pricing-card.popular .btn:hover {
    background-color: #0e4650;
}

.plan-name {
    font-size: 1rem;
    color: var(--text-grey);
    margin-bottom: 0.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-family: var(--font-body);
}

.price-period {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.whats-included {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.features {
    margin-bottom: 2rem;
    flex: 1;
}

.features li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-grey);
}

.features li .check {
    color: var(--accent-green);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card.popular .features li .check {
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* Contact */
.contact-section {
    background-color: var(--primary);
    padding: 5rem 0;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.owner-profile {
    margin-bottom: 2rem;
}

.owner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--bg-light);
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-grey);
    margin-bottom: 0.5rem;
}

.contact-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.contact-phone:hover {
    color: var(--accent-green);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.contact-email {
    display: block;
    font-size: 0.9rem;
    color: var(--text-grey);
    text-decoration: underline;
}

.contact-email:hover {
    color: var(--accent-green);
}


/* Footer */
.footer {
    padding: 2rem 0;
    background-color: var(--primary);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav-cta {
        display: inline-block;
        margin-left: auto;
        margin-right: 1rem;
    }

    .logo img {
        height: 60px;
    }

    /* Hero */
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-carousel .carousel-item {
        width: 150px;
    }

    /* Value Section */
    .what-you-get {
        padding: 2rem 1.5rem;
    }

    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-list li {
        font-size: 1rem;
    }

    /* Who We Serve */
    .who-we-serve-section {
        padding: 3rem 0;
    }

    .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .who-we-serve-left h2 {
        font-size: 2.5rem;
    }

    .who-we-serve-left .btn {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .trade-card {
        font-size: 1.25rem;
        padding: 1.25rem 1.5rem;
    }

    /* About Section */
    .about-section {
        padding: 3rem 0;
    }

    .about-section .bio-text {
        font-size: 1rem;
    }

    .owner-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .testimonials-section h2 {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Pricing */
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    /* FAQ */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
    }

    /* Contact */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .contact-phone {
        font-size: 1.25rem;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .who-we-serve-grid {
        gap: 2rem;
    }
}