/* ====== RESET & BASE ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: #1a1a2e; }
a { text-decoration: none; color: inherit; transition: .3s; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ====== COLORS ====== */
:root {
  --primary: #D4A853;
  --primary-dark: #b8902e;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --text: #444;
  --light: #f8f6f2;
  --white: #fff;
  --shadow: 0 10px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: pulse-wp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe57; }
@keyframes pulse-wp { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,.6)} }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 50px; width: 50px; object-fit: contain; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.1; }
.nav-logo small { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 400; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--primary); transition:.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--dark); background: var(--light); padding: 8px 16px; border-radius: 50px; }
.nav-phone:hover { background: var(--primary); color: #fff; }
.lang-btn { background: var(--dark); color: #fff; border: none; padding: 6px 14px; border-radius: 20px; cursor: pointer; font-size: 12px; font-weight: 600; }
.lang-btn:hover { background: var(--primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: .3s; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative; padding: 120px 0 80px; overflow: hidden;
}
.hero::before {
  content:''; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,.15) 0%, transparent 70%);
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(212,168,83,.15); color: var(--primary); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(212,168,83,.3); }
.hero h1 { font-size: 52px; line-height: 1.15; color: #fff; margin-bottom: 20px; }
.hero p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 600; transition: .3s; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,83,.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-full { width: 100%; justify-content: center; }
.hero-stats { display: flex; gap: 40px; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 28px; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); }
.hero-image { display: flex; justify-content: center; }
.hero-image img { max-height: 400px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.3)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; }

/* ====== TRUST BAR ====== */
.trust-bar { background: #fff; padding: 30px 0; border-bottom: 1px solid #eee; }
.trust-items { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text); }
.trust-item i { font-size: 20px; color: var(--primary); }

/* ====== SECTION COMMON ====== */
.section-tag { display: inline-block; color: var(--primary); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; margin-bottom: 12px; }
.section-header p { color: var(--text); font-size: 16px; }

/* ====== ABOUT ====== */
.about { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: 20px; overflow: hidden; }
.about-image img { border-radius: 20px; width: 100%; height: 450px; object-fit: cover; }
.about-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary); color: #fff; padding: 16px 24px; border-radius: 16px; text-align: center; }
.about-badge-number { display: block; font-size: 32px; font-weight: 700; font-family: 'Playfair Display', serif; }
.about-text h2 { font-size: 34px; margin-bottom: 20px; }
.about-text p { color: var(--text); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-feature { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.about-feature i { color: var(--primary); }

/* ====== SERVICES ====== */
.services { padding: 100px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: .3s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-image { height: 220px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.service-card:hover .service-image img { transform: scale(1.08); }
.service-content { padding: 24px; }
.service-content h3 { font-size: 18px; margin-bottom: 8px; }
.service-content p { font-size: 14px; color: var(--text); }

/* ====== PACKAGES ====== */
.packages { padding: 100px 0; background: #fff; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.package-card { background: #fff; border: 2px solid #eee; border-radius: 20px; padding: 28px; text-align: center; transition: .3s; position: relative; }
.package-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card.featured { border-color: var(--primary); box-shadow: 0 10px 40px rgba(212,168,83,.15); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 4px 20px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.package-image { margin-bottom: 16px; }
.package-image img { height: 120px; margin: 0 auto; object-fit: contain; }
.package-card h3 { font-size: 20px; margin-bottom: 16px; color: var(--dark); }
.package-card ul { list-style: none; margin-bottom: 24px; }
.package-card li { padding: 6px 0; font-size: 13px; color: var(--text); border-bottom: 1px solid #f0f0f0; }
.package-card li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); margin-right: 8px; font-size: 11px; }

/* ====== TESTIMONIALS ====== */
.testimonials { padding: 100px 0; background: var(--dark); }
.testimonials .section-tag { color: var(--primary); }
.testimonials .section-header h2 { color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 32px; backdrop-filter: blur(10px); }
.testimonial-stars { color: var(--primary); margin-bottom: 16px; font-size: 14px; display: flex; gap: 3px; }
.testimonial-card p { color: rgba(255,255,255,.8); font-size: 14px; font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author i { font-size: 40px; color: rgba(255,255,255,.3); }
.testimonial-author strong { display: block; color: #fff; font-size: 15px; }
.testimonial-author span { font-size: 12px; color: var(--primary); }

/* ====== CONTACT ====== */
.contact { padding: 100px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 34px; margin-bottom: 16px; }
.contact-info > p { color: var(--text); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item i { width: 44px; height: 44px; background: var(--primary); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 13px; color: #999; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-social { display: flex; gap: 12px; }
.contact-social a { width: 44px; height: 44px; border-radius: 12px; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-social a:hover { background: var(--primary); }
.contact-form-wrapper { background: #fff; border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.form-group { position: relative; margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px; border: 2px solid #eee; border-radius: 12px; font-size: 15px; font-family: 'Poppins', sans-serif; transition: .3s; background: transparent; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.form-group label { position: absolute; left: 16px; top: 16px; color: #aaa; font-size: 14px; transition: .3s; pointer-events: none; background: #fff; padding: 0 4px; }
.form-group input:focus + label, .form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label, .form-group textarea:not(:placeholder-shown) + label {
  top: -8px; font-size: 11px; color: var(--primary);
}

/* ====== FOOTER ====== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--primary); width: 16px; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { display: none; }
  .hero h1 { font-size: 38px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 350px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-contact p { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 0; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid #eee; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .hero h1 { font-size: 30px; }
  .hero { padding: 100px 0 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 28px; }
  .trust-items { gap: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
