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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #f8fafc;
    min-height: 100vh;
}

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

.hidden {
    display: none !important;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e2e8f0;
}

.nav {
    padding: 1.25rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-brand:hover {
    transform: scale(1.02);
}

.nav-logo {
    background: linear-gradient(135deg, #10b981, #0d9488);
    padding: 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.nav-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
}

.nav-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.nav-brand-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    margin-right: 50px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #059669;
    background-color: #ecfdf5;
}

.nav-cta {
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.nav-cta:hover {
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.nav-cta-icon {
    transition: transform 0.2s ease;
}

.nav-cta:hover .nav-cta-icon {
    transform: translateX(0.25rem);
}

.nav-toggle {
    display: block;
    color: #374151;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-left: auto;
}

.nav-toggle:hover {
    background-color: #f1f5f9;
}

.nav-toggle-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none !important;
    margin-top: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #e2e8f0;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile-link {
    display: block;
    color: #475569;
    text-decoration: none;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-mobile-link:hover {
    color: #059669;
    background-color: #ecfdf5;
}

.nav-mobile-cta {
    display: block;
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    margin: 0 8px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: white;
    padding: 6rem 0 10rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/4239037/pexels-photo-4239037.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(13, 148, 136, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-badge p {
    color: #6ee7b7;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, white, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 32rem;
}

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

.hero-btn-primary {
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.4);
}

.hero-btn-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.6);
}

.hero-btn-icon {
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover .hero-btn-icon {
    transform: translateX(0.25rem);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.hero-btn-secondary:hover {
    background: white;
    color: #0f172a;
}

/* Section Styles */
.about {
    padding: 5rem 0 7rem;
    background: white;
}

.services {
    padding: 5rem 0 7rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.contact {
    padding: 5rem 0 7rem;
    background: white;
}

.section-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #047857;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto;
}

.about-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

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

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.2s ease;
}

.feature-card:hover {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #6ee7b7;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    background: linear-gradient(135deg, #10b981, #0d9488);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    color: white;
}

.feature-text {
    color: #374151;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.service-image {
    height: 18rem;
    overflow: hidden;
    position: relative;
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent, transparent);
    z-index: 10;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    background: linear-gradient(135deg, #10b981, #0d9488);
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.service-icon svg {
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.service-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link-icon {
    transition: transform 0.2s ease;
}

.service-link:hover .service-link-icon {
    transform: translateX(0.25rem);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.contact-info-card:hover {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #6ee7b7;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.contact-info-icon {
    background: linear-gradient(135deg, #10b981, #0d9488);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    transition: transform 0.2s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-icon svg {
    color: white;
}

.contact-info-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-info-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    word-break: break-all;
}

.contact-info-link:hover {
    color: #059669;
}

.contact-info-text {
    color: #475569;
    font-weight: 500;
}

/* Contact CTA */
.contact-cta {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: white;
    padding: 2.5rem 4rem;
    border-radius: 1.5rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(13, 148, 136, 0.2));
}

.contact-cta-badge {
    position: relative;
    z-index: 10;
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.contact-cta-badge p {
    color: #6ee7b7;
    font-weight: 600;
    font-size: 0.875rem;
}

.contact-cta-title {
    position: relative;
    z-index: 10;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta-description {
    position: relative;
    z-index: 10;
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-button {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #059669, #0d9488);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.4);
}

.contact-cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.6);
}

.contact-cta-arrow {
    transition: transform 0.2s ease;
}

.contact-cta-button:hover .contact-cta-arrow {
    transform: translateX(0.25rem);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: #cbd5e1;
    padding: 4rem 0;
    border-top: 1px solid #374151;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 28rem;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-bottom: 1rem;
}

.footer-brand-link:hover {
    transform: scale(1.02);
}

.footer-logo {
    background: linear-gradient(135deg, #10b981, #0d9488);
    padding: 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    color: white;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-brand-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links-title,
.footer-contact-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

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

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #6ee7b7;
}

.footer-link-icon {
    transition: transform 0.2s ease;
}

.footer-link:hover .footer-link-icon {
    transform: translateX(0.25rem);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.footer-contact-icon {
    color: #6ee7b7;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.footer-contact-link:hover {
    color: #6ee7b7;
}

.footer-contact-text {
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.footer-credit-name {
    color: #6ee7b7;
    font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        margin-left: auto;
        margin-right: 50px;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero {
        padding: 10rem 0 16rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .about {
        padding: 7rem 0 10rem;
    }
    
    .services {
        padding: 7rem 0 10rem;
    }
    
    .contact {
        padding: 7rem 0 10rem;
    }
    
    .contact-cta {
        padding: 4rem 6rem;
    }
    
    .contact-cta-title {
        font-size: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .nav-mobile {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta-title {
        font-size: 1.5rem;
    }
}
