/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    color: #1E293B;
    background: #FFFAF0;
    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 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Merriweather', serif; font-weight: 700; line-height: 1.2; }
.gold-text { color: #B8860B; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B8860B;
    background: rgba(184, 134, 11, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #1E293B;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    color: #FFFAF0;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.4);
}
.btn-outline {
    background: rgba(255, 250, 240, 0.15);
    color: #FFFAF0;
    border: 1.5px solid rgba(255, 250, 240, 0.5);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255, 250, 240, 0.25);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 250, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(30, 41, 59, 0.08);
    padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFFAF0;
    transition: color 0.3s;
}
.navbar.scrolled .logo { color: #1E293B; }
.logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A017;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 250, 240, 0.85);
    transition: color 0.3s;
    position: relative;
}
.navbar.scrolled .nav-links a { color: #64748B; }
.navbar.scrolled .nav-links a:hover { color: #1E293B; }
.nav-links a:hover { color: #D4A017; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A017;
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: linear-gradient(135deg, #B8860B 0%, #D4A017 100%);
    color: #1E293B !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(184, 134, 11, 0.3);
    transition: all 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.5);
    color: #1E293B !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #FFFAF0;
    border-radius: 2px;
    transition: all 0.3s;
}
.navbar.scrolled .mobile-toggle span { background: #1E293B; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 30%, #334155 60%, #1E293B 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}
.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #B8860B 0%, transparent 70%);
    top: -10%; right: -5%;
    animation-delay: 0s;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #D4A017 0%, transparent 70%);
    bottom: -5%; left: 10%;
    animation-delay: -3s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    top: 30%; left: 40%;
    animation-delay: -5s;
    opacity: 0.2;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(212, 160, 23, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: #D4A017;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}
.hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    color: #FFFAF0;
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 250, 240, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 250, 240, 0.6);
    font-size: 0.85rem;
}
.trust-item svg { color: #D4A017; }
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 250, 240, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: #FFFAF0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 41, 59, 0.06);
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.12);
}
.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.3) 0%, transparent 60%);
}
.service-body { padding: 28px; }
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(212, 160, 23, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8860B;
    margin-bottom: 16px;
}
.service-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1E293B;
}
.service-body p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFAF0 0%, #FFF8E7 100%);
}
.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;
    box-shadow: 0 12px 40px rgba(30, 41, 59, 0.12);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.15);
    border: 4px solid #FFFAF0;
}
.about-img-secondary img { width: 220px; height: 160px; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: linear-gradient(135deg, #B8860B 0%, #D4A017 100%);
    color: #1E293B;
    padding: 16px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}
.about-content .section-title { margin-bottom: 20px; }
.about-text {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, rgba(212, 160, 23, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8860B;
}
.value-item strong {
    display: block;
    font-size: 0.95rem;
    color: #1E293B;
    margin-bottom: 2px;
}
.value-item span {
    font-size: 0.85rem;
    color: #94A3B8;
}

/* ── Experience ── */
.experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
}
.experience-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.experience-content .section-title { color: #FFFAF0; margin-bottom: 20px; }
.experience-text {
    font-size: 1.05rem;
    color: rgba(255, 250, 240, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}
.experience-visual { position: relative; display: flex; justify-content: center; }
.exp-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(184, 134, 11, 0.2);
    border: 3px solid rgba(184, 134, 11, 0.2);
}
.exp-circle img { width: 100%; height: 100%; object-fit: cover; }
.exp-float-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1E293B;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.exp-float-card svg { color: #B8860B; }

/* ── Visit ── */
.visit {
    padding: 100px 0;
    background: #FFFAF0;
}
.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.visit-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(30, 41, 59, 0.06);
    transition: all 0.3s ease;
}
.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.1);
}
.visit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #D4A017;
}
.visit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #1E293B;
}
.visit-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 16px;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #B8860B;
    transition: gap 0.3s;
}
.link-arrow:hover { gap: 10px; }

/* ── Contact ── */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF8E7 0%, #FFFAF0 100%);
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-text {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 28px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748B;
    font-size: 0.95rem;
}
.contact-detail svg { color: #B8860B; min-width: 18px; }
.contact-detail a { color: #64748B; transition: color 0.3s; }
.contact-detail a:hover { color: #B8860B; }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(30, 41, 59, 0.08);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #1E293B;
    background: #F8FAFC;
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B8860B;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}
.form-group textarea { resize: vertical; }
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon { color: #16A34A; margin-bottom: 16px; }
.form-success h3 {
    font-size: 1.4rem;
    color: #1E293B;
    margin-bottom: 10px;
}
.form-success p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.7;
}
.form-success a { color: #B8860B; font-weight: 600; }

/* ── Footer ── */
.footer {
    background: #0F172A;
    padding: 60px 0 0;
    color: rgba(255, 250, 240, 0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 250, 240, 0.08);
}
.footer-brand .logo { color: #FFFAF0; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: #D4A017; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 4px; }
.footer-contact a { color: rgba(255, 250, 240, 0.6); transition: color 0.3s; }
.footer-contact a:hover { color: #D4A017; }
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 250, 240, 0.35);
}

/* ── Animations ── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid,
    .experience-inner,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images { max-width: 480px; margin: 0 auto; }
    .about-img-secondary { right: 0; }
    .experience-visual { order: -1; }
    .exp-circle { width: 260px; height: 260px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #1E293B;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: rgba(255, 250, 240, 0.85) !important; font-size: 1.1rem; }
    .mobile-toggle { display: flex; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { gap: 16px; }
    .about-img-secondary { display: none; }
    .about-badge { top: -16px; right: 20px; }
    .contact-form-wrap { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .services, .about, .visit, .contact { padding: 64px 0; }
    .service-card { border-radius: 20px; }
}
