/* Pro Build Digital - Main Styles */

/* CSS Variables */
:root {
    --primary-color: #0B1F3A;
    --secondary-color: #FFFFFF;
    --accent-color: #D3D3D3;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Breakpoints */
    --mobile: 768px;
    --tablet: 1024px;
    --desktop: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Founder Photo Styling */
.founder-photo-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--secondary-color);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    opacity: 0.8;
}

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

/* Navigation */
.navbar {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(11, 31, 58, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: rgba(11, 31, 58, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(11, 31, 58, 0.8) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    animation: float 3s ease-in-out infinite;
}

.gear-icon {
    font-size: 8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 10s linear infinite;
}

.tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: orbit 8s linear infinite;
}

.element:nth-child(1) {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.element:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: -2.67s;
}

.element:nth-child(3) {
    bottom: 10%;
    left: 50%;
    animation-delay: -5.33s;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(11, 31, 58, 0.8) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xxl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Overview */
.services-overview {
    padding: var(--spacing-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.service-card {
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

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

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

/* Services Detailed */
.services-detailed {
    padding: var(--spacing-xxl) 0;
}

.service-detail {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xxl) 0;
}

.service-detail:not(:last-child) {
    border-bottom: 1px solid var(--accent-color);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.service-features,
.service-benefits {
    margin-bottom: var(--spacing-lg);
}

.service-features h3,
.service-benefits h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-lg);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Service Pricing */
.service-pricing {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: #f8f9fa;
    border-radius: 10px;
}

.service-pricing h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.price-option {
    background: var(--secondary-color);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.price-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.price-option h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.price-option p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Service Visuals */
.service-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.website-preview {
    width: 300px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.browser-bar {
    height: 30px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-sm);
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
}

.website-content {
    padding: var(--spacing-sm);
}

.website-header {
    height: 20px;
    background: var(--primary-color);
    border-radius: 3px;
    margin-bottom: var(--spacing-sm);
}

.website-sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.section-block {
    height: 15px;
    background: var(--accent-color);
    border-radius: 3px;
}

.chatbot-preview {
    width: 280px;
    height: 350px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.chat-header {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-sm);
    text-align: center;
    font-weight: 600;
}

.chat-messages {
    padding: var(--spacing-sm);
    height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: var(--spacing-sm);
    display: flex;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 15px;
    font-size: 0.9rem;
}

.message.bot .message-content {
    background: var(--accent-color);
    color: var(--text-dark);
}

.message.user .message-content {
    background: var(--primary-color);
    color: var(--text-white);
}

.automation-preview {
    width: 400px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-diagram {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.workflow-step {
    text-align: center;
    background: var(--secondary-color);
    padding: var(--spacing-sm);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 80px;
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.step-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.workflow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.invoice-preview {
    width: 250px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.invoice-document {
    padding: var(--spacing-lg);
    height: 100%;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-color);
}

.invoice-title {
    font-weight: 700;
    color: var(--primary-color);
}

.invoice-number {
    font-weight: 600;
    color: var(--text-light);
}

.invoice-details {
    margin-bottom: var(--spacing-lg);
}

.invoice-line {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--accent-color);
}

.invoice-line:last-child {
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.invoice-footer {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.payment-button {
    background: var(--success-color);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.payment-button:hover {
    background: #218838;
}

.support-preview {
    width: 280px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.support-dashboard {
    padding: var(--spacing-lg);
}

.dashboard-header {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.status-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-dot.green {
    background: var(--success-color);
}

/* Why Choose Us */
.why-choose-us {
    background: #f8f9fa;
    padding: var(--spacing-xxl) 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.why-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.benefit-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2px;
}

.benefit-text h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.benefit-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.stats-card {
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xxl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-card {
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card:before {
    content: """;
    position: absolute;
    top: -10px;
    left: var(--spacing-lg);
    font-size: 4rem;
    color: var(--accent-color);
    line-height: 1;
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-author h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mission Section */
.mission-section {
    padding: var(--spacing-xxl) 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.mission-statement {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.mission-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background: var(--secondary-color);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.value-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Founder Section */
.founder-section {
    background: #f8f9fa;
    padding: var(--spacing-xxl) 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-icon {
    font-size: 4rem;
    color: var(--text-light);
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.founder-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.credential {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.credential-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.credential-text h4 {
    margin-bottom: 2px;
    color: var(--primary-color);
}

.credential-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-xxl) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.why-card {
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.why-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.why-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: var(--spacing-xxl) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto var(--spacing-lg);
    font-family: var(--font-heading);
}

.step-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xxl);
}

.contact-form-container h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 3px;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-weight: bold;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.error-message {
    color: var(--error-color);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error-color);
}

.form-group.error .error-message {
    display: block;
}

.form-message {
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    margin-top: var(--spacing-lg);
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.message-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.form-message h3 {
    margin-bottom: var(--spacing-sm);
}

.form-message p {
    margin-bottom: 0;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* Contact Info */
.contact-info h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-method {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.method-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.method-info h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.method-info p {
    margin-bottom: 2px;
    color: var(--text-dark);
}

.method-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.response-guarantee {
    background: #f8f9fa;
    padding: var(--spacing-lg);
    border-radius: 10px;
}

.response-guarantee h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.response-guarantee ul {
    list-style: none;
    padding: 0;
}

.response-guarantee li {
    padding: var(--spacing-xs) 0;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: var(--spacing-xxl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.faq-item {
    background: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
    background: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

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

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--accent-color);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    color: var(--text-white);
}

.footer-section p {
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.google-business {
    font-weight: 600;
    border: 1px solid var(--accent-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 5px;
    justify-content: center;
    margin-bottom: var(--spacing-xs);
}

.google-business:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--accent-color);
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
}

/* Image Loading Optimization */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* WebP Support */
.webp .fallback-image {
    display: none;
}

.no-webp .webp-image {
    display: none;
}

/* Lazy Loading Animation */
@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

img.loaded {
    animation: imageLoad 0.5s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

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

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}
/* Blog Content Styling */
.prose, .post-content .prose, article .prose {
    max-width: none;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Blog Paragraphs */
.prose p, .post-content p, article p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Blog Headings */
.prose h1, .post-content h1, article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.prose h1:first-child, .post-content h1:first-child, article h1:first-child {
    margin-top: 0;
}

.prose h2, .post-content h2, article h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.prose h3, .post-content h3, article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.prose h4, .post-content h4, article h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Blog Lists */
.prose ul, .post-content ul, article ul,
.prose ol, .post-content ol, article ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose ul, .post-content ul, article ul {
    list-style-type: disc;
}

.prose ol, .post-content ol, article ol {
    list-style-type: decimal;
}

.prose li, .post-content li, article li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.prose li > p, .post-content li > p, article li > p {
    margin-bottom: 0.5rem;
}

/* Nested Lists */
.prose ul ul, .post-content ul ul, article ul ul,
.prose ol ol, .post-content ol ol, article ol ol,
.prose ul ol, .post-content ul ol, article ul ol,
.prose ol ul, .post-content ol ul, article ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Blog Links */
.prose a, .post-content a, article a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(11, 31, 58, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.prose a:hover, .post-content a:hover, article a:hover {
    color: #0a1a2e;
    text-decoration-color: rgba(11, 31, 58, 0.7);
}

/* Blog Bold and Emphasis */
.prose strong, .post-content strong, article strong {
    font-weight: 600;
    color: var(--primary-color);
}

.prose em, .post-content em, article em {
    font-style: italic;
}

/* Blog Blockquotes */
.prose blockquote, .post-content blockquote, article blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

/* Blog Code */
.prose code, .post-content code, article code {
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: var(--primary-color);
}

.prose pre, .post-content pre, article pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code, .post-content pre code, article pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Blog Tables */
.prose table, .post-content table, article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th, .post-content th, article th,
.prose td, .post-content td, article td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.prose th, .post-content th, article th {
    font-weight: 600;
    background: #f8fafc;
    color: var(--primary-color);
}

/* Blog Horizontal Rules */
.prose hr, .post-content hr, article hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 3rem 0;
}

/* Blog Images */
.prose img, .post-content img, article img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* First paragraph styling */
.prose > p:first-child, .post-content > .prose > p:first-child {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* Remove excessive margins on first and last elements */
.prose > *:first-child, .post-content > .prose > *:first-child {
    margin-top: 0;
}

.prose > *:last-child, .post-content > .prose > *:last-child {
    margin-bottom: 0;
}
EOF < /dev/null

/* Clickable Logo Styling */
.nav-logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.footer-logo {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
    border-radius: 4px;
}
EOF < /dev/null
