/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.skip-link { position: absolute; top: -100%; left: 16px; background: #E86A4F; color: #fff; padding: 8px 16px; border-radius: 8px; z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 16px; }

/* ===== NAVBAR ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30,30,40,0.06);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(30,30,40,0.08); }
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text { font-size: 1.2rem; font-weight: 700; color: #1E1E28; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.938rem; font-weight: 500; color: #535363; transition: color 0.2s; }
.nav-links a:hover { color: #E86A4F; }
.nav-cta {
    display: flex; align-items: center; gap: 6px;
    background: #E86A4F; color: #fff !important;
    padding: 10px 20px; border-radius: 50px;
    font-weight: 600; font-size: 0.875rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: #D45438; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,106,79,0.35); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    display: block; width: 22px; height: 2px; background: #33333F;
    border-radius: 2px; transition: all 0.3s;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after { content: ''; position: absolute; }
.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; position: relative; z-index: 101; }
    .nav-links {
        position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
        background: #fff; flex-direction: column; justify-content: center;
        gap: 24px; padding: 80px 32px 32px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.1rem; }
    .nav-overlay {
        position: fixed; inset: 0; background: rgba(0,0,0,0.4);
        z-index: 99; opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .nav-overlay.active { opacity: 1; pointer-events: all; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-size: 0.938rem; font-weight: 600;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn-coral { background: #E86A4F; color: #fff; }
.btn-coral:hover { background: #D45438; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,79,0.35); }
.btn-outline { background: transparent; color: #1E1E28; border: 2px solid rgba(30,30,40,0.15); }
.btn-outline:hover { border-color: #E86A4F; color: #E86A4F; transform: translateY(-2px); }
.btn-white { background: #fff; color: #1E1E28; }
.btn-white:hover { background: #F7F7F8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 96px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-label {
    display: inline-block; font-size: 0.813rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em; color: #E86A4F;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700; color: #1E1E28; line-height: 1.25;
    margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-subtitle { font-size: 1.063rem; color: #6B6B7D; line-height: 1.7; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #FFF8F6 0%, #FFF4F1 40%, #F7F7F8 100%);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0; opacity: 0.4;
    background-image: radial-gradient(circle at 20% 80%, rgba(232,106,79,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232,106,79,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,106,79,0.1); color: #E86A4F;
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.813rem; font-weight: 600; margin-bottom: 24px;
}
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800; line-height: 1.15; color: #1E1E28;
    margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: 1.125rem; color: #6B6B7D; line-height: 1.75;
    margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: #535363; }
.hero-image {
    position: relative; border-radius: 24px; overflow: hidden;
    aspect-ratio: 6/7; max-height: 680px;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
    position: absolute; bottom: -20px; left: -20px;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(232,106,79,0.15); filter: blur(40px);
}

@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle, .hero-actions, .hero-trust { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-image { display: none; }
}

/* ===== SERVICES ===== */
.services { background: #fff; }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    background: #fff; border: 1px solid rgba(30,30,40,0.07);
    border-radius: 20px; padding: 36px 28px;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover {
    border-color: rgba(232,106,79,0.2);
    box-shadow: 0 12px 40px rgba(232,106,79,0.08);
    transform: translateY(-4px);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(232,106,79,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #E86A4F; margin-bottom: 20px;
    transition: background 0.3s;
}
.service-card:hover .service-icon { background: #E86A4F; color: #fff; }
.service-card h3 {
    font-size: 1.125rem; font-weight: 700; color: #1E1E28;
    margin-bottom: 10px; letter-spacing: -0.01em;
}
.service-card p { font-size: 0.938rem; color: #6B6B7D; line-height: 1.7; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
.about { background: #F7F7F8; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; aspect-ratio: 5/6; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute; bottom: -32px; right: -24px;
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border: 4px solid #fff;
}
.about-stat {
    position: absolute; top: -20px; left: -16px;
    background: #E86A4F; color: #fff;
    padding: 20px 24px; border-radius: 16px;
    box-shadow: 0 8px 24px rgba(232,106,79,0.3);
}
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.813rem; font-weight: 500; opacity: 0.9; line-height: 1.4; }
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 1rem; color: #6B6B7D; line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: grid; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 0.938rem; font-weight: 500; color: #41414F; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-content .section-label, .about-content .section-title { text-align: center; }
    .about-text { text-align: center; }
    .about-features { max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* ===== EQUIPMENT ===== */
.equipment { background: #fff; }
.equipment-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.equip-card {
    border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(30,30,40,0.07);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    background: #fff;
}
.equip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(30,30,40,0.1);
}
.equip-img { overflow: hidden; aspect-ratio: 4/3; }
.equip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.equip-card:hover .equip-img img { transform: scale(1.05); }
.equip-info { padding: 20px 24px 24px; }
.equip-info h3 { font-size: 1.063rem; font-weight: 700; color: #1E1E28; margin-bottom: 6px; }
.equip-info p { font-size: 0.875rem; color: #6B6B7D; line-height: 1.6; }

@media (max-width: 900px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .equipment-grid { grid-template-columns: 1fr; } }

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative; padding: 96px 24px;
    background: #1E1E28; overflow: hidden;
}
.cta-bg-pattern {
    position: absolute; inset: 0; opacity: 0.5;
    background-image: radial-gradient(circle at 30% 50%, rgba(232,106,79,0.2) 0%, transparent 60%),
                      radial-gradient(circle at 70% 50%, rgba(232,106,79,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.cta-content { position: relative; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700; color: #fff; line-height: 1.25;
    margin-bottom: 20px; letter-spacing: -0.02em;
}
.cta-text { font-size: 1.063rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn-white:hover { background: #fff; }

/* ===== CONTACT ===== */
.contact { background: #F7F7F8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-label { text-align: left; }
.contact-info .section-title { text-align: left; }
.contact-text { font-size: 1rem; color: #6B6B7D; line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: grid; gap: 24px; }
.contact-detail { display: flex; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    background: rgba(232,106,79,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #E86A4F;
}
.contact-detail strong { display: block; font-size: 0.813rem; text-transform: uppercase; letter-spacing: 0.08em; color: #1E1E28; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.938rem; color: #6B6B7D; line-height: 1.6; }
.contact-detail a:hover { color: #E86A4F; }

/* Form */
.contact-form-wrap {
    background: #fff; border-radius: 24px; padding: 40px;
    box-shadow: 0 8px 32px rgba(30,30,40,0.06);
    border: 1px solid rgba(30,30,40,0.06);
}
.form-title { font-size: 1.25rem; font-weight: 700; color: #1E1E28; margin-bottom: 28px; letter-spacing: -0.01em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.813rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: #535363; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid rgba(30,30,40,0.12);
    border-radius: 12px; font-size: 0.938rem; font-family: inherit;
    color: #1E1E28; background: #F7F7F8;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #E86A4F; box-shadow: 0 0 0 3px rgba(232,106,79,0.1);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding: 16px 20px; border-radius: 12px;
    background: rgba(34,197,94,0.08); color: #16A34A;
    font-size: 0.938rem; font-weight: 500;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info .section-label, .contact-info .section-title { text-align: center; }
    .contact-text { text-align: center; }
    .contact-details { max-width: 480px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer { background: #111118; color: rgba(255,255,255,0.6); padding: 72px 24px 0; }
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
    padding-bottom: 56px;
}
.footer-brand .nav-logo-text { color: #fff; }
.footer-desc { font-size: 0.938rem; line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
    font-size: 0.813rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.875rem; line-height: 1.5;
}
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: #E86A4F; }
.footer-col svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.813rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: #E86A4F; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
