:root {
    /* Colors */
    --primary: #333333;
    --background: #F5F5F5;
    --accent: #7A8C99;
    --button: #444B54;
    --coffee: #FF813F;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-size-base: 1rem;
    --font-size-large: 1.2rem;
    --font-size-xlarge: 1.5rem;
    --font-size-xxlarge: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--primary);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
}

h1 { font-size: var(--font-size-xxlarge); }
h2 { font-size: var(--font-size-xlarge); }
h3 { font-size: var(--font-size-large); }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 5%;
    position: relative;
    overflow: hidden;
}

/* Navigation */
.navbar {
    background-color: white;
    padding: var(--spacing-sm) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.logo {
    font-size: var(--font-size-xlarge);
    font-weight: bold;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    margin-left: var(--spacing-lg);
    transition: var(--transition-base);
}

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

.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 var(--spacing-sm);
    position: relative;
    background: url('https://img.freepik.com/premium-psd/minimalistic-business-desk-still-life-concept_23-2149081613.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: white;
    opacity: 0.8;
}

.hero h1, .hero p, .hero button {
    position: relative;
    z-index: 1;
}

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

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

/* Feature Cards Grid */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-card li {
    color: var(--accent);
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Services Section */
.services-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding-top: 30px;
}

.services-container::after {
    content: '';
    position: absolute;
    top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    right: 30%;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50% 50% 50% 50% / 100% 100% 100% 100%;
    transform: translateX(-10%);
    z-index: -1;
}

.services-content {
    flex: 7;
    padding-right: 5rem;
    max-width: 700px;
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.2;
}

.services-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--accent);
}

.services-content p.highlight {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    margin: 2rem 0;
}

.services-content .cta-button {
    margin-top: 2rem;
}

.services-image {
    flex: 3;
    position: relative;
    min-height: 500px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Coffee Section */
.coffee-section {
    background-color: white;
    padding: 5rem 5%;
}

.coffee-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.coffee-support {
    background: var(--background);
    padding: 2rem;
    border-radius: 12px;
    min-height: 400px;
}

.coffee-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

.coffee-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coffee-form label {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.coffee-form input,
.coffee-form select,
.coffee-form textarea {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.coffee-form input:focus,
.coffee-form select:focus,
.coffee-form textarea:focus {
    outline: none;
    border-color: var(--coffee);
    box-shadow: 0 0 0 3px rgba(255, 129, 63, 0.1);
}

.coffee-form textarea {
    resize: vertical;
    min-height: 100px;
}

.coffee-button {
    background-color: var(--coffee);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.coffee-button:hover {
    background-color: var(--coffee);
    transform: translateY(-2px);
}

.coffee-button i {
    font-size: 1.2rem;
}

.coffee-content {
    padding: 2rem;
}

.coffee-content p {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.vision-template {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 12px;
}

.template-item {
    margin-bottom: 1.5rem;
}

.template-item:last-child {
    margin-bottom: 0;
}

.template-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.template-item .example {
    color: var(--accent);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

/* Section Separator */
.section-separator {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.3;
}

/* Steps Section */
#steps {
    padding: 5rem 5%;
    position: relative;
    overflow: visible;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent);
    opacity: 0.3;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-top: 25px;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem 2rem 2rem 3rem;
    border-radius: 8px;
    position: relative;
    width: 100%;
    transition: transform 0.3s ease;
}

.step-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    border-radius: 8px 0 0 8px;
}

/* .step-card:nth-child(2) .step-content::before {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
}

.step-card:nth-child(3) .step-content::before {
    background: linear-gradient(45deg, #FFB347, #FFCC33);
}

.step-card:nth-child(4) .step-content::before {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
}

.step-card:nth-child(5) .step-content::before {
    background: linear-gradient(45deg, #00BCD4, #03A9F4);
}

.step-card:nth-child(6) .step-content::before {
    background: linear-gradient(45deg, #3F51B5, #2196F3);
} */

.step-card .step-content::before {
    background: linear-gradient(45deg, #7A8C99, #fff);
}

.step-content:hover {
    transform: translateX(10px);
}

.step-number {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--accent);
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--primary);
    margin: 1rem 0;
    text-align: center;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.features-list li {
    margin: 0.8rem 0;
    color: var(--primary);
}

.pricing-description {
    color: var(--accent);
    font-style: italic;
    margin: 1rem 0;
}

.pricing-card .cta-button {
    margin-top: auto;
    width: 100%;
}

.pricing-note {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    color: var(--accent);
    font-size: 1.1rem;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 5rem 5%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.contact-info {
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 24px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-md);
    background-color: white;
    font-size: 1rem;
    transition: var(--transition-base);
    color: var(--primary);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:hover {
    border-color: var(--accent);
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(122, 140, 153, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(122, 140, 153, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Add a subtle animation when focusing on form elements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-1px);
}

/* Style for disabled state */
.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Add a subtle hover effect */
.form-group input:hover:not(:disabled),
.form-group select:hover:not(:disabled),
.form-group textarea:hover:not(:disabled) {
    border-color: #b0b0b0;
}

.contact-form .cta-button {
    align-self: flex-start;
    padding: var(--spacing-sm) var(--spacing-lg);
}

/* Buttons */
.cta-button,
.coffee-button {
    background-color: var(--button);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: var(--transition-base);
}

.cta-button:hover,
.coffee-button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.coffee-button {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.coffee-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}

.faq-link {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .mobile-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary);
        margin: 5px 0;
        transition: var(--transition-base);
    }

    .hero h1 {
        font-size: var(--font-size-xlarge);
    }

    section {
        padding: 3rem 5%;
    }

    .services-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .services-content {
        padding-right: 0;
        text-align: center;
    }

    .services-container::after {
        display: none;
    }

    .services-content h2 {
        text-align: center;
        font-size: 2rem;
    }

    .services-content p {
        font-size: 1rem;
    }

    .services-content p.highlight {
        font-size: 1.2rem;
    }

    .services-image {
        min-height: 300px;
    }

    .coffee-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .coffee-support {
        min-height: auto;
    }

    .coffee-content {
        padding: 1rem;
        text-align: center;
    }

    .steps-container::before {
        left: 30px;
    }

    .step-card {
        width: calc(100% - 60px);
        margin: 2rem 0 2rem 60px !important;
    }

    .step-card::before {
        left: -35px !important;
    }

    .step-card::after {
        left: -15px !important;
        width: 15px;
    }

    .step-number {
        left: -50px !important;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
    }

    .contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: var(--spacing-lg);
    }

    .contact-form .cta-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

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

    .social-links {
        justify-content: center;
    }
}

/* Stripe Elements Styling */
.stripe-element {
    padding: var(--spacing-sm);
    border: 1px solid #ccc;
    border-radius: var(--border-radius-sm);
    background-color: white;
    margin-bottom: var(--spacing-xs);
}

.stripe-element-errors {
    color: #dc3545;
    font-size: 14px;
    margin-top: var(--spacing-xs);
}

#card-element {
    min-height: 40px;
}

.checkbox-group {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1px !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 2px !important;
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

.checkbox-group label {
    flex: 1 !important;
    line-height: 1.4 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    white-space: normal !important;
    display: inline !important;
}

.checkbox-group a {
    color: #0066cc;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}