/* General Styles */
:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c88a0;
    --accent-color: #e6f3f7;
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
     /* Account for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navigation {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

/* Hero Sections */
.hero-section,
.about-hero,
.business-hero,
.contact-hero {
    background-color: var(--accent-color);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

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

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: var(--accent-color);
}

/* Business Model Page */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.model-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* About Page */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.value-card,
.expertise-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.description {
    color: var(--light-text);
}

/* Contact Page */
.contact-main {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-container a {
    color: #007bff;
    text-decoration: none;
}

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

.submit-button {
    width: 100%;
    padding: 16px 24px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.submit-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: none;
}

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

.map-section {
    background-color: var(--accent-color);
}

.map-container {
    height: 400px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

/* Privacy and Terms Pages */
.privacy-section,
.terms-section {
    padding-top: 6rem;
}

.privacy-section h1,
.terms-section h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.privacy-section h2,
.terms-section h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 2rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Footer styles */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-section,
    .about-hero,
    .business-hero,
    .contact-hero {
        padding: 6rem 1rem 3rem;
    }

    h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .model-grid,
    .values-grid,
    .expertise-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Custom styles to complement Webflow */
.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

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

.feature-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

@media screen and (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .card.featured {
        transform: none;
    }
}

.contact-info p {
    margin: 0.5rem 0;
}

.nav-logo-icon {
    width: 33px;
    height: 33px;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

@media screen and (max-width: 479px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Services Section Styles */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    background: linear-gradient(to bottom right, var(--white), var(--accent-color));
}

.service-card.featured:before {
    content: "Popular Choice";
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
}

.service-price .currency {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

.service-card .button {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

@media screen and (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
}

/* Mobile menu styles */
@media screen and (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        padding: 80px 0 40px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: flex;
        flex-direction: column;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 15px 30px;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
    }

    .nav-menu .nav-link:hover {
        background-color: #f5f5f5;
    }

    .nav-menu .nav-link.w--current {
        color: #007bff;
        background-color: #f8f9fa;
    }

    .menu-button {
        display: block !important;
        position: relative;
        z-index: 1000;
        padding: 15px;
        cursor: pointer;
    }

    .menu-button .icon {
        position: relative;
        width: 24px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .menu-button .icon:before,
    .menu-button .icon:after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .menu-button .icon:before {
        top: -6px;
    }

    .menu-button .icon:after {
        bottom: -6px;
    }

    .menu-button.is-active .icon {
        background-color: transparent;
    }

    .menu-button.is-active .icon:before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-button.is-active .icon:after {
        bottom: 0;
        transform: rotate(-45deg);
    }
}

/* Desktop menu styles */
@media screen and (min-width: 992px) {
    .menu-button {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background: none;
        box-shadow: none;
    }

    .nav-menu .nav-link {
        display: inline-block;
        padding: 20px 15px;
        border: none;
        transition: color 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        color: #007bff;
    }

    .nav-menu .nav-link.w--current {
        color: #007bff;
    }
} 
