* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #fdfdfd;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Playfair Display', serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #c5a880;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-text span {
    color: #c5a880;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 400;
    margin-left: 25px;
    font-size: 14px;
    transition: 0.3s;
}

.nav-menu a:hover { color: #c5a880; }
.nav-menu a.highlight { color: #c5a880; font-weight: 600; }
.btn-nav { background: #1a1a1a; color: #fff !important; padding: 10px 20px; border-radius: 30px; }

.hero {
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?q=80&w=1920') no-repeat center center/cover;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.hero-content { position: relative; color: #fff; max-width: 600px; z-index: 2; }
.hero-content h1 { font-size: 52px; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 16px; margin-bottom: 35px; font-weight: 300; line-height: 1.6; color: #e0e0e0; }
.hero-buttons { display: flex; gap: 15px; }

.btn-primary { padding: 15px 30px; background: #c5a880; color: #fff; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 14px; transition: 0.3s; }
.btn-secondary { padding: 15px 30px; border: 2px solid #fff; color: #fff; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 14px; transition: 0.3s; }
.btn-primary:hover { background: #b0926a; }
.btn-secondary:hover { background: #fff; color: #1a1a1a; }

.services { padding: 80px 5%; background: #fff; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 36px; color: #1a1a1a; margin-bottom: 10px; }
.section-title p { color: #777; font-size: 15px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.service-card { background: #fbfaf8; padding: 40px 30px; border-radius: 15px; text-align: center; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(197,168,128,0.1); }
.card-icon { font-size: 40px; margin-bottom: 20px; }
.service-card h3 { font-size: 22px; color: #1a1a1a; margin-bottom: 15px; }
.service-card p { color: #666; font-size: 14px; line-height: 1.6; }

.ai-section { padding: 80px 5%; background: #f5f2ed; }
.ai-container { display: flex; align-items: center; gap: 50px; max-width: 1100px; margin: 0 auto; }
.ai-text { flex: 1; }
.ai-visual { flex: 1; }
.badge { background: #c5a880; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: inline-block; margin-bottom: 15px; }
.ai-text h2 { font-size: 38px; color: #1a1a1a; margin-bottom: 20px; line-height: 1.3; }
.ai-text p { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 30px; }
.ai-box { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.02); text-align: center; }
.box-title { font-weight: 600; margin-bottom: 15px; font-size: 15px; }
.btn-upload { background: #1a1a1a; color: white; border: none; padding: 12px 30px; border-radius: 25px; font-weight: 600; cursor: pointer; font-size: 14px; width: 100%; transition: 0.3s; }
.btn-upload:hover { background: #c5a880; }
.ai-box small { display: block; margin-top: 10px; color: #888; font-size: 11px; }
.visual-card { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.visual-card img { width: 100%; display: block; height: 400px; object-fit: cover; }
.ai-indicator { position: absolute; top: 20px; right: 20px; background: rgba(0,255,100,0.85); color: #000; font-weight: bold; font-size: 11px; padding: 6px 12px; border-radius: 20px; }

.appointment { padding: 80px 5%; background: #fff; text-align: center; }
.form-wrapper { max-width: 500px; margin: 0 auto; background: #fbfaf8; padding: 40px; border-radius: 15px; box-shadow: 0 5px 25px rgba(0,0,0,0.02); }
.form-wrapper h2 { font-size: 28px; margin-bottom: 10px; }
.form-wrapper p { color: #666; font-size: 14px; margin-bottom: 25px; }
.form-wrapper input, .form-wrapper select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; outline: none; }
.btn-submit { width: 100%; padding: 14px; background: #c5a880; color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; }

.footer { background: #111; color: #fff; padding: 40px 5%; text-align: center; }
.footer-top p { color: #aaa; font-size: 14px; margin-top: 5px; margin-bottom: 5px; }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; font-size: 12px; color: #666; margin-top: 15px; }

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; text-align: center; padding: 15px 5%; }
    .nav-menu { display: flex; flex-direction: row; gap: 5px; justify-content: center; width: 100%; }
    .nav-menu a { margin: 0 8px; font-size: 13px; }
    .hero { height: 70vh; text-align: center; padding: 0 5%; justify-content: center; }
    .hero-content h1 { font-size: 34px; }
    .hero-buttons { flex-direction: column; gap: 10px; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
    .ai-container { flex-direction: column; gap: 30px; }
    .visual-card img { height: 280px; }
}
