/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    background: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; line-height: 1.2; }
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0D9488;
    background: #CCFBF1;
    padding: .35rem .85rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1E293B;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: #0D9488;
    color: #fff;
    border-color: #0D9488;
}
.btn-primary:hover { background: #0F766E; border-color: #0F766E; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(13,148,136,.3); }
.btn-secondary {
    background: transparent;
    color: #1E293B;
    border-color: #CBD5E1;
}
.btn-secondary:hover { border-color: #0D9488; color: #0D9488; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-white { background: #fff; color: #0D9488; border-color: #fff; }
.btn-white:hover { background: #F0FDFA; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,255,255,.3); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248,250,252,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30,41,59,.06);
    transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(30,41,59,.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #1E293B;
}
.nav ul { display: flex; gap: 2rem; }
.nav a {
    font-size: .9rem;
    font-weight: 500;
    color: #64748B;
    transition: color .2s;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0D9488;
    border-radius: 2px;
    transition: width .3s;
}
.nav a:hover { color: #0D9488; }
.nav a:hover::after { width: 100%; }
.nav-phone { display: none; }
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1E293B;
    border-radius: 2px;
    transition: all .3s;
}

/* ─── Mobile Nav ─── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,23,42,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.mobile-overlay.active .mobile-menu { transform: translateX(0); }
.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E293B;
    padding: .75rem 0;
    border-bottom: 1px solid #F1F5F9;
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #F0FDFA 50%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 6rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: #0D9488;
    background: rgba(13,148,136,.08);
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #1E293B;
    margin-bottom: 1.5rem;
}
.hero-title .accent { color: #0D9488; }
.hero-desc {
    font-size: 1.15rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-number { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: #1E293B; }
.stat-label { font-size: .8rem; color: #94A3B8; }
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #CBD5E1;
}
.hero-visual { position: relative; }
.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(30,41,59,.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30,41,59,.12);
    border: 4px solid #F8FAFC;
}
.accent-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #0D9488;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: auto; }

/* ─── Services ─── */
.services {
    padding: 6rem 0;
    background: #1E293B;
}
.services .section-tag { background: rgba(13,148,136,.2); }
.services .section-title { color: #fff; }
.services .section-desc { color: #94A3B8; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s ease;
}
.service-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(13,148,136,.4);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(13,148,136,.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5EEAD4;
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: .75rem;
}
.service-card p {
    font-size: .95rem;
    color: #94A3B8;
    line-height: 1.7;
}

/* ─── Why Us ─── */
.why-us { padding: 6rem 0; background: #F8FAFC; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-visual { position: relative; }
.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(30,41,59,.12);
}
.why-floating-card {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(30,41,59,.1);
}
.why-floating-card svg { color: #0D9488; flex-shrink: 0; }
.why-floating-card strong { display: block; font-size: .95rem; color: #1E293B; }
.why-floating-card span { font-size: .8rem; color: #94A3B8; }
.why-content .section-desc { margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
    width: 24px;
    height: 24px;
    background: #CCFBF1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D9488;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-item strong { display: block; font-size: 1rem; color: #1E293B; margin-bottom: .2rem; }
.why-item span { font-size: .9rem; color: #64748B; line-height: 1.6; }

/* ─── Gallery ─── */
.gallery { padding: 6rem 0; background: #fff; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 1rem;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,41,59,.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: .95rem; }
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 7; }

/* ─── Testimonials ─── */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F0FDFA 0%, #F8FAFC 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(30,41,59,.06);
    transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(30,41,59,.1); }
.testimonial-quote { margin-bottom: 1rem; }
.testimonial-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.author-avatar {
    width: 40px;
    height: 40px;
    background: #0D9488;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
}
.testimonial-author strong { display: block; font-size: .95rem; color: #1E293B; }
.testimonial-author span { font-size: .8rem; color: #94A3B8; }

/* ─── Contact ─── */
.contact { padding: 6rem 0; background: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info .section-desc { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
    width: 48px;
    height: 48px;
    background: #CCFBF1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D9488;
    flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .95rem; color: #1E293B; margin-bottom: .2rem; }
.contact-item span, .contact-item a { font-size: .9rem; color: #64748B; }
.contact-item a:hover { color: #0D9488; }
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(30,41,59,.08);
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.map-link {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #0D9488;
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: background .3s;
}
.map-link:hover { background: #0F766E; }
.contact-form-wrapper {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #E2E8F0;
}
.contact-form h3 {
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: .5rem;
}
.form-note { font-size: .9rem; color: #94A3B8; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0D9488;
    box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: #0D9488;
}
.form-success svg { margin: 0 auto .75rem; }
.form-success p { font-weight: 600; font-size: 1.1rem; }

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 5rem 0;
    background: #0D9488;
    text-align: center;
}
.cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: .75rem;
}
.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer {
    background: #0F172A;
    padding: 4rem 0 0;
    color: #94A3B8;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .9rem; color: #94A3B8; transition: color .2s; }
.footer-links a:hover { color: #5EEAD4; }
.footer-contact p { font-size: .9rem; line-height: 1.8; }
.footer-contact a { color: #94A3B8; transition: color .2s; }
.footer-contact a:hover { color: #5EEAD4; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p { font-size: .8rem; color: #64748B; }

/* ─── Responsive ─── */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .hero-img-accent { left: -1rem; bottom: -1.5rem; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .why-floating-card { right: 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .nav-phone { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding-top: 72px; }
    .hero-grid { padding-bottom: 4rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 180px);
    }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(2) { grid-column: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-stat-divider { display: none; }
    .hero-img-accent { display: none; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) { grid-column: span 1; }
    .gallery-item { height: 200px; }
    .cta-actions { flex-direction: column; align-items: center; }
}
