/* ─── RESET & BASE ─── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1a1a2e;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── HEADER ─── */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 45px;
    width: auto;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #075e54;
}
.logo-text span {
    color: #1a1a2e;
    font-weight: 400;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #075e54;
    cursor: pointer;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}
.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a2e;
    transition: 0.2s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.nav-list a:hover,
.nav-list a.active {
    color: #075e54;
    border-bottom-color: #075e54;
}
.btn-nav-cta {
    background: #075e54;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 30px;
    font-weight: 600;
    border-bottom: none !important;
}
.btn-nav-cta:hover {
    background: #064a42;
    color: #fff !important;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.25s;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: #075e54;
    color: #fff;
}
.btn-primary:hover {
    background: #064a42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 94, 84, 0.25);
}
.btn-outline {
    background: transparent;
    border-color: #075e54;
    color: #075e54;
}
.btn-outline:hover {
    background: #075e54;
    color: #fff;
}
.btn-secondary {
    background: #eef2f7;
    color: #075e54;
}
.btn-secondary:hover {
    background: #d5dce6;
}
.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ─── HERO ─── */
.hero {
    padding: 60px 0 40px;
    background: #fff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    background: #e3f0ee;
    color: #075e54;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-content h1 span {
    color: #075e54;
}
.hero-content p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 520px;
    margin-bottom: 28px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}
.hero-stats {
    display: flex;
    gap: 40px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #075e54;
}
.stat-label {
    font-size: 0.85rem;
    color: #6b7a8a;
}
.hero-image {
    position: relative;
}
.hero-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}
.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-floating-card i {
    font-size: 2rem;
    color: #075e54;
}
.hero-floating-card span {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

/* ─── SECTION COMMON ─── */
.section-padding {
    padding: 80px 0;
}
.section-header {
    margin-bottom: 48px;
}
.section-tag {
    display: inline-block;
    background: #e3f0ee;
    color: #075e54;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-header p {
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}

/* ─── SERVICES GRID ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: 0.3s;
    border-top: 4px solid #075e54;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.service-icon {
    background: #e3f0ee;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #075e54;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.service-card p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.service-link {
    font-weight: 600;
    color: #075e54;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}
.service-link:hover {
    gap: 12px;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 20px;
    width: 100%;
}
.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #075e54;
    color: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    text-align: center;
    line-height: 1.3;
}
.about-experience-badge .number {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
}
.about-experience-badge .label {
    font-size: 0.85rem;
}
.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-content h2 span {
    color: #075e54;
}
.about-content p {
    color: #4a5568;
    margin-bottom: 16px;
}
.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.about-features i {
    color: #075e54;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    background: #f0f2f5;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.testimonial-rating {
    color: #f9b115;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.testimonial-card p {
    color: #1a1a2e;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    font-weight: 600;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: #6b7a8a;
}

/* ─── CTA ─── */
.cta-section {
    background: linear-gradient(135deg, #075e54, #0a8c7e);
    color: #fff;
    padding: 60px 0;
}
.cta-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-content p {
    opacity: 0.9;
    margin-bottom: 24px;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.cta-buttons .btn-outline {
    border-color: #fff;
    color: #fff;
}
.cta-buttons .btn-outline:hover {
    background: #fff;
    color: #075e54;
}
.cta-image img {
    border-radius: 20px;
    width: 100%;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #1a1a2e;
    color: #cbd5e1;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.footer-logo span span {
    font-weight: 400;
    color: #cbd5e1;
}
.footer-about p {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 300px;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    background: rgba(255,255,255,0.06);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: 0.2s;
}
.footer-social a:hover {
    background: #075e54;
    color: #fff;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: 0.2s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.footer-contact-list i {
    color: #075e54;
    width: 18px;
    margin-top: 4px;
}
.footer-contact-list a {
    color: #cbd5e1;
}
.footer-contact-list a:hover {
    color: #fff;
}
.footer-bottom {
    padding: 20px 0;
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a {
    color: #cbd5e1;
}
.footer-bottom a:hover {
    color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-floating-card {
        left: 10px;
        bottom: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-experience-badge {
        right: 0;
    }
    .cta-image {
        order: -1;
    }
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 16px;
        border-top: 1px solid #e8edf2;
        padding-top: 16px;
    }
    .main-nav.open {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .nav-list a {
        padding: 8px 0;
        border-bottom: none;
    }
    .btn-nav-cta {
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}