@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --maroon: #6B1D2A;
  --maroon-dark: #4A1420;
  --maroon-light: #8B2E3D;
  --gold: #C9A94E;
  --gold-light: #D4BC6A;
  --gold-dark: #A88B3A;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107,29,42,0.08);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.navbar-brand span { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--maroon); }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); position: relative; }
.navbar-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.navbar-links a:hover { color: var(--maroon); }
.navbar-links a:hover::after { width: 100%; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--white); border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(107,29,42,0.3);
  transition: var(--transition);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,29,42,0.4); }
.btn-cta-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  box-shadow: 0 4px 16px rgba(201,169,78,0.3);
}
.btn-cta-gold:hover { box-shadow: 0 8px 24px rgba(201,169,78,0.4); }
.btn-outline {
  background: transparent; border: 2px solid var(--maroon); color: var(--maroon);
  box-shadow: none;
}
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--maroon); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-light) 100%);
  padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/hero-bg.png') center/cover no-repeat;
  opacity: 0.15;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(201,169,78,0.2); border: 1px solid rgba(201,169,78,0.4);
  color: var(--gold-light); font-size: 0.85rem; font-weight: 500;
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 20px; line-height: 1.15; }
.hero h1 .gold { color: var(--gold); }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 500px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; }
.hero-image-wrapper {
  position: relative; width: 380px; height: 380px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid rgba(201,169,78,0.5);
  box-shadow: 0 0 60px rgba(201,169,78,0.2), 0 20px 60px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat .label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* ── SECTIONS COMMON ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .overline {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--maroon); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--gold); border-radius: var(--radius-lg);
  transform: translate(12px, 12px); z-index: -1;
}
.about-content h2 { font-size: 2.2rem; color: var(--maroon); margin-bottom: 20px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.highlight-item .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.highlight-item span { font-size: 0.88rem; font-weight: 500; color: var(--gray-700); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  padding: 40px 32px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--maroon));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,29,42,0.08), rgba(201,169,78,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.service-card h3 { font-size: 1.25rem; color: var(--maroon); margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); color: var(--white); }
.testimonials .section-header .overline { color: var(--gold-light); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  padding: 36px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; opacity: 0.9; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--maroon-dark); font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; opacity: 0.6; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0; background: var(--cream);
  text-align: center;
}
.cta-card {
  max-width: 700px; margin: 0 auto; padding: 60px 48px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,169,78,0.2);
}
.cta-card h2 { font-size: 2rem; color: var(--maroon); margin-bottom: 16px; }
.cta-card p { color: var(--gray-600); margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; color: var(--maroon); margin-bottom: 24px; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px; padding: 20px; border-radius: var(--radius);
  background: var(--gray-50); transition: var(--transition);
}
.contact-item:hover { background: var(--cream); }
.contact-item .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.contact-item p { font-size: 0.9rem; color: var(--gray-600); }
.contact-item a { color: var(--maroon); font-weight: 500; }
.contact-item a:hover { color: var(--gold-dark); }
.contact-form {
  padding: 40px; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1.5px solid var(--gray-200); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; transition: var(--transition);
  background: var(--gray-50);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,78,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); }
.footer h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.88rem; transition: var(--transition); }
.footer ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--maroon-dark); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: pulse-wp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
@keyframes pulse-wp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image-wrapper { width: 280px; height: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 28px; backdrop-filter: blur(20px); }
  .navbar-links.active { display: flex; }
  .navbar-links a { font-size: 1.2rem; }
  .menu-toggle { display: block; z-index: 1001; }
  .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); }
  .services-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 20px; }
}
