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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 5rem 1.5rem;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-text {
    max-width: 42rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    color: white;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #14B8A6;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 3.75rem;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #14B8A6;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #0d9488;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.btn-secondary {
    border: 1px solid #99f6e4;
    color: #99f6e4;
    background: transparent;
}

.btn-secondary:hover {
    background: #134e4a;
    color: white;
}

.hero-info {
    display: flex;
    gap: 1.5rem;
    color: white;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
}

.hero-info-item i {
    color: #14B8A6;
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    color: white;
    font-size: 2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Services Section */
.section {
    padding: 5rem 1.5rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
    background: #f9fafb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

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

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

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

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

.service-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14B8A6;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #4b5563;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom right, #111827, #1f2937);
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-text-small {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: #14B8A6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    max-width: 20rem;
}

.about-badge-content {
    display: flex;
    align-items: flex-start;
}

.about-badge-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14B8A6;
    border-radius: 0.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.about-badge-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-badge h4 {
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.25rem;
}

.about-badge p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Why Choose Us */
.feature-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    background: #14B8A6;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14B8A6;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: white;
}

.feature-icon i {
    color: white;
    font-size: 1.875rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon i {
    color: #14B8A6;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-title {
    color: white;
}

.feature-description {
    color: #4b5563;
    line-height: 1.6;
    transition: all 0.3s;
}

.feature-card:hover .feature-description {
    color: rgba(255,255,255,0.9);
}

.testimonial-box {
    background: linear-gradient(to right, #14B8A6, #0d9488);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-top: 5rem;
}

.testimonial-box i {
    color: rgba(255,255,255,0.3);
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.875rem;
    color: white;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.testimonial-caption {
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.7), rgba(0,0,0,0.8));
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-glass {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.2);
}

.cta-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-info-card {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-info-card i {
    color: #14B8A6;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.cta-info-text {
    text-align: left;
}

.cta-info-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.cta-info-value {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
}

.footer-main {
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .tagline {
    color: #14B8A6;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
    border-radius: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #9ca3af;
}

.social-link:hover {
    background: #14B8A6;
    color: white;
}

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

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

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #14B8A6;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: #14B8A6;
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1.5rem;
}

.footer-bottom-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p,
.footer-bottom a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #14B8A6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}