:root {
    /* Company color scheme */
    --color-primary: #8DC63F;    /* Bright Green */
    --color-secondary: #33A29A;  /* Teal */
    --color-accent: #ECE7D0;     /* Light Beige */
    --color-background: #FAFAFA; /* Off White */
    --color-text: #000000;       /* Black */
    --color-text-light: #4A4A4A; /* Lighter text for better contrast */
    
    /* Additional shades */
    --color-primary-dark: #7BAB37;  /* Darker green for hover states */
    --color-secondary-dark: #2B8A84; /* Darker teal for hover states */
    --color-gray-100: var(--color-accent);
    --color-gray-200: #E5E5E5;
    
    /* Update Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;  /* Modern, clean font for body text */
    --font-heading: 'Outfit', sans-serif;            /* Contemporary font for headings */
    
    /* Font weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Font sizes */
    --fs-sm: 0.875rem;    /* 14px */
    --fs-base: 1rem;      /* 16px */
    --fs-md: 1.125rem;    /* 18px */
    --fs-lg: 1.25rem;     /* 20px */
    --fs-xl: 1.5rem;      /* 24px */
    --fs-2xl: 2rem;       /* 32px */
    --fs-3xl: 2.5rem;     /* 40px */
}

/* Base styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    font-weight: var(--fw-regular);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-background);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav__menu-wrapper {
    height: 100%;
}

.nav__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
    gap: 2rem;
}

.nav__item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav__item a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: var(--fw-medium);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav__item a:hover {
    color: var(--color-primary);
}

/* Submenu styles */
.nav__item--has-submenu {
    position: relative;
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-background);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav__item--has-submenu:hover .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__submenu li {
    list-style: none;
}

.nav__submenu a {
    padding: 0.75rem 1.5rem;
    display: block;
    white-space: nowrap;
}

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav__menu-wrapper {
        position: fixed;
        top: 80px; /* Height of header */
        left: 0;
        right: 0;
        background: var(--color-background);
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        height: auto;
        visibility: hidden;
        opacity: 0;
        z-index: 999;
    }

    .nav__menu-wrapper.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav__menu {
        flex-direction: column;
        gap: 0;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .nav__item {
        width: 100%;
        height: auto;
    }

    .nav__item a {
        padding: 1rem;
        display: block;
        width: 100%;
    }

    /* Hamburger button styles */
    .nav__toggle {
        display: block;
        width: 44px;
        height: 44px;
        padding: 10px;
        border: none;
        background: none;
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }

    .nav__toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--color-text);
        margin: 4px 0;
        transition: 0.3s ease;
        transform-origin: center;
    }

    /* Animated hamburger to X */
    .nav__toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* Submenu styles for mobile */
    .nav__submenu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        display: none;
        background: rgba(0,0,0,0.02);
        border-radius: 4px;
    }

    .nav__item--has-submenu.active .nav__submenu {
        display: block;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Adjust main content to account for fixed header */
    body {
        padding-top: 80px;
    }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Add these new styles for About section */
.about {
    padding: 5rem 0;
    background-color: var(--color-gray-100);
}

.about__grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact form styles */
.contact {
    padding: 5rem 0;
}

.contact__wrapper {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contact__wrapper {
        grid-template-columns: 3fr 2fr;
    }
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-gray-200);
    border-radius: 0.375rem;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

/* Footer Styles */
.footer {
    background-color: var(--color-text);
    color: var(--color-background);
    padding: 3rem 0;
    font-size: var(--fs-sm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-primary);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--fw-medium);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-primary);
}

/* Specific social media colors on hover */
.social-link .fa-linkedin:hover {
    color: #0077b5;
}

.social-link .fa-facebook:hover {
    color: #1877f2;
}

.social-link .fa-instagram:hover {
    color: #e4405f;
}

.social-link .fa-github:hover {
    color: #6e5494;
}

/* Services Styles */
.services {
    padding: 2rem 0;
    background-color: var(--color-accent);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns */
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: var(--fw-bold);
}

.service-card p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* CTA Button Styles */
.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    margin-top: 2rem;
    transition: background-color 0.3s;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
}

/* Contact Info Styles */
.contact {
    background-color: var(--color-background);
}

.contact__info h3 {
    font-size: var(--fs-xl);
    margin-bottom: 1rem;
}

.contact__info p {
    font-size: var(--fs-md);
    line-height: 1.6;
}

/* Logo styles */
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem 0;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo:active {
    transform: scale(0.95);
}

.nav__logo-img {
    height: 60px;
    width: auto;
    /* Better SVG rendering */
    image-rendering: optimizeQuality;
    /* Hardware acceleration */
    transform: translateZ(0);
    /* Prevent blurry rendering */
    -webkit-font-smoothing: antialiased;
    /* Smooth scaling */
    backface-visibility: hidden;
}

/* Hero logo optimization */
.hero__logo {
    margin-bottom: 3rem;
    /* Prevent layout shift */
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo-img {
    height: 120px;
    width: auto;
    /* Better SVG rendering */
    image-rendering: optimizeQuality;
    /* Hardware acceleration */
    transform: translateZ(0);
    /* Prevent layout shift during load */
    min-height: 120px;
}

/* Responsive adjustments with smoother transitions */
@media (max-width: 768px) {
    .nav__logo {
        height: 45px;
    }
    
    .nav__logo-img {
        height: 45px;
        min-height: 45px;
    }
    
    .hero__logo {
        height: 80px;
    }
    
    .hero__logo-img {
        height: 80px;
        min-height: 80px;
    }
}

/* Add loading animation */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav__logo-img,
.hero__logo-img {
    animation: logoFadeIn 0.5s ease-out;
}

/* Update form elements */
.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--color-secondary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(51, 162, 154, 0.2); /* Using secondary color */
}

/* Navigation menu updates */
.nav__menu a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: var(--fs-base);
    font-weight: var(--fw-medium);
}

.nav__menu a:hover {
    color: var(--color-primary);
}

/* Hero section updates */
.hero {
    padding-top: 80px;
    text-align: center;
    background-color: var(--color-background);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button--secondary {
    background-color: var(--color-secondary);
}

.cta-button--secondary:hover {
    background-color: var(--color-secondary-dark);
}

/* Service cards enhancement */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Add subtle accent backgrounds */
.about {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-accent) 100%);
}

.contact {
    background-color: var(--color-background);
}

/* Hero logo styles */
.hero__logo {
    margin-bottom: 1.5rem;
}

.hero__logo-img {
    height: 100px;
    width: auto;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
        min-height: 80vh;
    }
    
    .hero__logo {
        margin-bottom: 1rem;
    }
}

/* Update hero text spacing */
.hero h1 {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

/* Services section typography */
.services h2 {
    font-size: var(--fs-2xl);
    margin-bottom: 1rem;
    font-weight: var(--fw-bold);
}

.service-card h3 {
    font-size: var(--fs-xl);
    margin: 1.5rem 0 1rem;
    font-weight: var(--fw-semibold);
}

.service-card p {
    font-size: var(--fs-md);
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Responsive typography */
@media (max-width: 768px) {
    :root {
        --fs-3xl: 2rem;      /* 32px */
        --fs-2xl: 1.75rem;   /* 28px */
        --fs-xl: 1.25rem;    /* 20px */
    }
    
    .hero p {
        font-size: var(--fs-md);
    }
}

/* Sticky Contact Button */
.sticky-contact {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: var(--color-primary);
    color: var(--color-background);
    padding: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    transition: transform 0.3s ease;
}

.sticky-contact:hover {
    transform: translateY(-2px);
}

/* Team Section */
.team {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-accent) 50%);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--color-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member__content {
    padding: 1.5rem;
}

.team-member__position {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    margin-bottom: 1rem;
}

.team-member__expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.team-member__expertise span {
    background: var(--color-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--fs-sm);
}

.team-member__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.team-member__social a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.team-member__social a:hover {
    color: var(--color-primary);
}

/* Quote Request Section */
.quote-request {
    padding: 2rem 0;
    background-color: var(--color-background);
    position: relative;
    scroll-margin-top: 100px; /* Add scroll margin to prevent header overlap */
}

.quote-request h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-step {
    padding: 1rem;
}

.quote-step h3 {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    text-align: center;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group label {
    display: block;
    font-size: 1rem;
    font-weight: var(--fw-medium);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: #999;
}

.quote-form__buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn--primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn--secondary {
    background: #e0e0e0;
    color: var(--color-text);
}

.btn--secondary:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

/* Form validation styles */
.form__group input.error,
.form__group select.error,
.form__group textarea.error {
    border-color: #ff4444;
}

.error-message {
    color: #ff4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form__group input.valid,
.form__group select.valid,
.form__group textarea.valid {
    border-color: #00C851;
}

/* Success message styling */
.quote-success {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.quote-success__icon {
    color: var(--color-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-form {
        padding: 1.5rem;
    }

    .quote-step h3 {
        font-size: 1.5rem;
    }

    .quote-form__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Animation Classes */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Animations */
.nav__toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Progress Bar for Quote Form */
.quote-progress {
    height: 4px;
    background: var(--color-gray-200);
    margin-bottom: 2rem;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-primary);
    transition: width 0.3s ease;
    width: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal-body {
    margin-top: 1rem;
}

.member-details {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.member-details .member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.member-details .member-name {
    font-size: 1.75rem;
    margin: 0;
    color: #333;
}

.member-details .member-position {
    font-size: 1.25rem;
    color: #666;
    margin: 0.5rem 0;
}

.member-details .member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.member-details .expertise-tag {
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.member-details .member-bio {
    text-align: justify;
    line-height: 1.6;
    margin: 1.5rem 0;
    white-space: pre-wrap; /* Preserve line breaks in bio text */
}

.member-details .member-social {
    margin-top: 1rem;
}

.member-details .member-social a {
    color: #666;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.member-details .member-social a:hover {
    color: #000;
}

/* Add animation for modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Calendly Button Styles */
.calendly-open-button {
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--color-primary);
    color: white;
    font-weight: var(--fw-semibold);
}

.calendly-open-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(141, 198, 63, 0.3);
    background-color: var(--color-primary-dark);
}

/* Calendly Widget Overlay */
.calendly-overlay {
    background-color: rgba(0, 0, 0, 0.8) !important;
    z-index: 99999 !important;
}

.calendly-popup {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

.calendly-inline-widget {
    min-width: 320px !important;
    height: 700px !important;
}

/* Pulsing dot styles */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    min-width: 8px;  /* Ensure dot maintains size */
    min-height: 8px; /* Ensure dot maintains size */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Position the button content */
.calendly-open-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2rem;
    white-space: nowrap;
    width: auto;
    text-align: center;
}

/* Ensure dot is visible */
.calendly-open-button .pulse-dot {
    flex-shrink: 0;
    z-index: 1;
}

/* Background Text Section */
.background-text {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: var(--color-background);
}

.text-stack {
    position: relative;
    text-align: right;
    padding-right: 10vw;
}

.text-top {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(141, 198, 63, 0.05);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

.text-middle {
    font-size: clamp(2rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(141, 198, 63, 0.05);
    font-family: var(--font-heading);
    margin-top: -0.5em;
    letter-spacing: 0.1em;
}

.text-bottom {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(141, 198, 63, 0.05);
    font-family: var(--font-heading);
    margin-top: -0.5em;
    letter-spacing: 0.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .background-text {
        padding: 2rem 0;
    }
    
    .text-stack {
        padding-right: 5vw;
    }
}

/* Journey Section */
.journey-section {
    padding: 2rem 0 0;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.journey-content {
    max-width: 100%;
    margin: 0;
    position: relative;
}

.journey-text-overlay {
    position: absolute;
    top: 25%;
    right: 8%;
    transform: translateY(-50%);
    max-width: 600px;
    text-align: right;
    padding: 2rem;
    background: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.journey-text-overlay h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
}

.journey-text-overlay h2 .highlight {
    color: var(--color-primary);
    font-weight: var(--fw-bold);
    font-size: 3rem;
}

.mountain-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mountain-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 1800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .journey-text-overlay h2 {
        font-size: 2rem;
    }
    
    .journey-text-overlay h2 .highlight {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .journey-content {
        display: flex;
        flex-direction: column;
    }

    .journey-text-overlay {
        position: static;
        transform: none;
        order: 1;
        text-align: center;
        padding: 2rem 1rem;
        margin: 0 auto;
        right: auto;
        top: auto;
    }

    .mountain-visual {
        order: 2;
        height: auto;
    }

    .journey-text-overlay h2 {
        font-size: 1.75rem;
    }
    
    .journey-text-overlay h2 .highlight {
        font-size: 2rem;
    }
}

/* Process Section */
.process-section {
    padding: 2rem 0;
    background-color: var(--color-background);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-size: var(--fs-2xl);
    color: var(--color-text);
    margin-bottom: 1rem;
}

.process-header p {
    font-size: var(--fs-lg);
    color: var(--color-text-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: var(--fs-lg);
    color: var(--color-text);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: var(--fs-base);
    color: var(--color-text-light);
    line-height: 1.6;
}

.process-arrow {
    color: var(--color-primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        padding: 0.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .journey-section {
        padding: 1.5rem 0 0;
    }
    
    .journey-content {
        padding: 0;
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .member-bio {
        text-align: justify;
        font-size: 0.9rem;
    }
}

.nav__cta {
    background-color: var(--color-primary);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav__cta:hover {
    background-color: var(--color-primary-dark);
    color: white !important;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav__cta {
        margin: 0.5rem 0;
        text-align: center;
        display: inline-block;
    }
}

/* Add general scroll-margin for all sections with IDs */
section[id] {
    scroll-margin-top: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote-request {
        scroll-margin-top: 80px; /* Slightly smaller on mobile */
    }
    
    section[id] {
        scroll-margin-top: 80px;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    font-family: var(--font-heading);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav__logo-img {
        width: 150px; /* Make logo slightly smaller on mobile */
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
} 