/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: #0a0f1a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --teal: #14b8a6;
    --teal-light: #2dd4bf;
    --teal-dark: #0d9488;
    --teal-glow: rgba(20, 184, 166, 0.3);
    --gold: #d4a853;
    --gold-light: #e8c47c;
    --gold-dark: #b8923f;
    --slate-900: #0a0f1a;
    --slate-800: #0d1b2a;
    --slate-700: #142236;
    --slate-600: #1e3a5f;
    --slate-500: #2d4a6f;
    --slate-400: #64748b;
    --slate-300: #94a3b8;
    --slate-200: #cbd5e1;
    --slate-100: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.logo-text .accent { color: var(--teal); }
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-300);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:hover { color: #fff; background: rgba(20, 184, 166, 0.1); }
.nav-link.active { color: var(--teal); }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #0a0f1a;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.45);
}
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
    border-color: var(--teal);
    background: rgba(20, 184, 166, 0.1);
    color: var(--teal-light);
}
.btn--white {
    background: #fff;
    color: var(--slate-900);
}
.btn--white:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 26, 0.92) 0%,
        rgba(13, 27, 42, 0.85) 40%,
        rgba(20, 58, 95, 0.7) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0 160px;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--teal-light);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.accent-gradient {
    background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-300);
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

/* ===== STAT CARDS ===== */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 16px;
    overflow: hidden;
    margin-top: -80px;
    position: relative;
    z-index: 4;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(20, 184, 166, 0.08);
}
.stat-card {
    background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-900) 100%);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.stat-card:hover {
    background: linear-gradient(180deg, var(--slate-700) 0%, var(--slate-800) 100%);
}
.stat-card-inner { display: flex; flex-direction: column; gap: 6px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header--centered { text-align: center; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--slate-300);
    line-height: 1.7;
    max-width: 600px;
}
.section-header--centered .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { background: var(--slate-900); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: linear-gradient(145deg, var(--slate-800), var(--slate-900));
    border: 1px solid rgba(20, 184, 166, 0.08);
    border-radius: 16px;
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(20, 184, 166, 0.06);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 14px;
    color: var(--teal);
    margin-bottom: 22px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: rgba(20, 184, 166, 0.18);
    transform: scale(1.05);
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 22px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    transition: all 0.3s ease;
}
.service-link:hover { gap: 12px; color: var(--teal-light); }

/* ===== ABOUT ===== */
.about { background: var(--slate-800); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 4px solid var(--slate-800);
}
.about-img-secondary img { width: 100%; height: 220px; object-fit: cover; }
.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.35);
    z-index: 2;
}
.about-experience-badge .exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.about-experience-badge .exp-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.3;
}
.about-content { padding: 20px 0; }
.about-text {
    font-size: 1rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--slate-200);
}
.about-feature svg { color: var(--teal); flex-shrink: 0; }

/* ===== WHY US ===== */
.why-us { background: var(--slate-900); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    background: linear-gradient(145deg, var(--slate-800), var(--slate-900));
    border: 1px solid rgba(20, 184, 166, 0.06);
    border-radius: 16px;
    padding: 40px 36px;
    transition: all 0.4s ease;
    position: relative;
}
.why-card:hover {
    border-color: rgba(20, 184, 166, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.why-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(20, 184, 166, 0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.92rem;
    color: var(--slate-300);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery { background: var(--slate-800); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.05rem;
    color: var(--slate-200);
    line-height: 1.7;
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== CONTACT ===== */
.contact { background: var(--slate-900); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    color: var(--teal);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 0.88rem;
    color: var(--slate-300);
    line-height: 1.6;
}
.contact-item a { color: var(--teal); transition: color 0.3s ease; }
.contact-item a:hover { color: var(--teal-light); }
.contact-map { margin-top: 8px; border-radius: 12px; overflow: hidden; }
.contact-desc {
    font-size: 1rem;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: linear-gradient(145deg, var(--slate-800), var(--slate-900));
    border: 1px solid rgba(20, 184, 166, 0.1);
    border-radius: 20px;
    padding: 40px;
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.form-desc {
    font-size: 0.9rem;
    color: var(--slate-300);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--slate-900);
    border: 1px solid rgba(20, 184, 166, 0.12);
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-500); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2314b8a6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--slate-800); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--teal);
}
.form-success svg { margin-bottom: 16px; }
.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
}
.form-success p { font-size: 0.9rem; color: var(--slate-300); }

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-900);
    border-top: 1px solid rgba(20, 184, 166, 0.08);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-200);
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a,
.footer-col ul li {
    font-size: 0.88rem;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-col ul li svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--slate-500);
}
.footer-bottom a { color: var(--teal); transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { 
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 15, 26, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }
    .nav.open { display: flex; }
    .nav-link { font-size: 1.2rem; padding: 14px 24px; }
    .menu-toggle { display: flex; z-index: 1001; }
    .header-cta { display: none; }
    .hero-content { padding: 40px 0 180px; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); margin-top: -60px; }
    .stat-card { padding: 24px 16px; }
    .stat-number { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 80px; }
    .about-img-secondary { right: 0; }
    .about-features { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 70px 0; }
}

@media (max-width: 480px) {
    .stat-cards { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
