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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

/* Responsive typography helpers */
h1, .hero-heading h1 {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 3.75rem);
    line-height: 1.15;
}
.section-header h2 {
    font-size: clamp(1.25rem, 2vw + 0.5rem, 3rem);
}
.section-header p {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.25rem);
}

html {
    scroll-behavior: smooth;
}

/* Color Variables */
:root {
    --primary: #2563eb;
    --secondary: #3b82f6;
    --accent: #10b981;
    --neutral-dark: #1e293b;
    --neutral-light: #f8fafc;
    --text-gray: #64748b;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Slightly larger touch targets on small screens */
@media (max-width: 639px) {
    .btn-primary, .btn-accent {
        padding: 0.9rem 1.25rem;
        min-height: 50px;
    }
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-accent:hover {
    background-color: #059669;
}

.btn-call {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-call:hover {
    background-color: #1d4ed8;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

.logo {
    cursor: pointer;
}

/* Ensure logo text isn't underlined (in case it's wrapped in a link) */
.logo-text,
.logo-text h1,
.logo-text h3,
.logo-text p,
.logo-text a {
    text-decoration: none;
}

.logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    overflow: hidden;
    padding: 0.12rem;
    box-sizing: border-box;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

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

.nav-link {
    color: #374151;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.mobile-nav-link {
    padding: 0.9rem 1rem;
    min-height: 52px;
    border-left: 3px solid transparent;
}

.mobile-menu-btn:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-nav {
    background-color: white;
    border-top: 1px solid #e5e7eb;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.hidden {
    max-height: 0;
}

.mobile-nav-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    color: #374151;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background-color: rgba(37, 99, 235, 0.05);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
}

.mobile-nav-link.active {
    font-weight: 600;
    background-color: rgba(37, 99, 235, 0.05);
    border-left-color: var(--accent);
}

/* Hero Section */
.hero {
    /* background image with subtle gradient overlay for contrast */
    background: linear-gradient(rgba(15,23,42,0.65), rgba(15,23,42,0.45)), url('images/accounting.avif') center/cover no-repeat;
    color: white;
    padding: 3rem 0 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-heading h1 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: #bfdbfe;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.feature-item span {
    color: #bfdbfe;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-item span {
    color: #bfdbfe;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    max-width: 32rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    height: auto;
    display: block;
}

/* Limit hero image height on small screens and allow responsive scaling */
.hero-image img {
    max-height: 36rem;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
}

/* About Section */
.about {
    background-color: var(--neutral-light);
    padding: 3rem 0;
}

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

.about-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-card h3 {
    font-size: 1rem;
}

.about-card p {
    font-size: 0.875rem;
}

.about-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.about-icon.primary { background-color: var(--primary); }
.about-icon.accent { background-color: var(--accent); }
.about-icon.secondary { background-color: var(--secondary); }
.about-icon.purple { background-color: #7c3aed; }

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
}

.about-card p {
    color: var(--text-gray);
}

/* Services Section */
.services {
    background-color: white;
    padding: 3rem 0;
}

.services-category {
    margin-bottom: 3rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
    margin-bottom: 0.5rem;
}

.category-header p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

.services-grid.individual {
    grid-template-columns: 1fr;
    max-width: 75rem;
    margin: 0 auto;
}

.service-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.875rem;
}

.service-features li {
    font-size: 0.8rem;
}

.service-card.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #93c5fd;
}

.service-card.green {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: #6ee7b7;
}

.service-card.purple {
    background: linear-gradient(135deg, #e9d5ff, #ddd6fe);
    border-color: #c4b5fd;
}

.service-card.orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
    border-color: #fb923c;
}

.service-card.indigo {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-color: #a5b4fc;
}

.service-card.teal {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    border-color: #5eead4;
}

.service-card.rose {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border-color: #f9a8d4;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.service-icon.primary { background-color: var(--primary); }
.service-icon.accent { background-color: var(--accent); }
.service-icon.purple { background-color: #7c3aed; }
.service-icon.orange { background-color: #ea580c; }
.service-icon.indigo { background-color: #4f46e5; }
.service-icon.teal { background-color: #0d9488; }
.service-icon.rose { background-color: #e11d48; }

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.service-features i {
    color: var(--accent);
    width: 1rem;
    height: 1rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    background-color: var(--neutral-light);
    padding: 3rem 0;
}

.contact-content {
    display: grid;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

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

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

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

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

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

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    min-height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1.25rem;
}

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

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

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.875rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 12rem;
}

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

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link.linkedin { background-color: #0077b5; }
.social-link.twitter { background-color: #1da1f2; }
.social-link.facebook { background-color: #1877f2; }
.social-link.youtube { background-color: #ff0000; }

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: white;
    /*padding: 4rem 0;*/
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0.12rem;
    box-sizing: border-box;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo .logo-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .logo-text p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 1.5rem;
    height: 1.5rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links button,
.footer-links a {
    color: #cbd5e1;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    padding-bottom: 10px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    width: 100%;
}

/* Make footer-bottom-content act as a centered max-width row so items align with page content */
.footer-bottom .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.footer-bottom .footer-copy {
    flex: 1 1 auto;
    text-align: left;
}

.footer-bottom .footer-created {
    flex: 0 0 auto;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Created By */
.footer-created-by {
    display: none;
}

.footer-created-by .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-created-by p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
}

.footer-created-by a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-created-by a:hover {
    color: var(--primary);
}

/* New selectors for created-by inside footer-bottom */
.footer-bottom .footer-created {
    color: #94a3b8;
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
}

.footer-bottom .footer-created a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom .footer-created a:hover {
    color: var(--primary);
}

.footer-bottom .footer-copy {
    margin: 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-bottom .footer-created { text-align: right; }
    .footer-bottom .footer-copy { text-align: left; }
}

/* Ensure both footer items align vertically in the flex row */
.footer-bottom .footer-copy,
.footer-bottom .footer-created {
    margin: 0;
    align-self: center;
}

/* Mobile-specific styling for Created By */
@media (max-width: 639px) {
    .footer-created-by {
        display: block !important;
        visibility: visible !important;
        padding: 0.75rem 0;
    }
    
    .footer-created-by p {
        font-size: 0.8rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }

    /* On tablet and up, spread the hero feature words evenly */
    .hero-features {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
        width: 100%;
        margin-top: 1rem;
    }

    .feature-item {
        flex: 1 1 0;
        justify-content: center;
        text-align: center;
        padding: 0.25rem 0.5rem;
    }
    
    .btn-call {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-created-by {
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-heading h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid.individual {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-header h3 {
        font-size: 1.75rem;
    }
    
    .category-header p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h4 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .btn-submit {
        width: auto;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.125rem;
    }
    
    .map-container {
        height: 16rem;
    }
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        padding: 5rem 0 8rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
    }
    
    .hero-heading h1 {
        font-size: 3.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-text {
        gap: 2rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        font-size: 1.25rem;
    }
    
    .about {
        padding: 5rem 0;
    }
    
    .about-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-icon {
        width: 4rem;
        height: 4rem;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .services-category {
        margin-bottom: 5rem;
    }
    
    .category-header {
        margin-bottom: 3rem;
    }
    
    .category-header h3 {
        font-size: 2rem;
    }
    
    .category-header p {
        font-size: 1.125rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .services-grid.individual {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card h4 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .btn-submit {
        width: 100%;
    }
    
    .contact-icon {
        width: 3rem;
        height: 3rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form States */
.form-success {
    background-color: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.form-error {
    background-color: #fef2f2;
    color: #dc2626;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}