/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

:root {
  --ivory: #FFFFF8; --ivory-2: #FDFCFA; --ivory-3: #FAF9F6;
  --gold: #D4AF37; --gold-2: #E8C547; --gold-3: #F2D492; --gold-dark: #B8960C;
  --champagne: #F7E7CE; --rose-gold: #E8B4A0;
  --text-dark: #2C2416; --text-mid: #5C4A2A; --text-light: #8B7355;
  --shadow-gold: rgba(212,175,55,0.35); --shadow-dark: rgba(0,0,0,0.18);
  --glass-bg: rgba(255,255,248,0.92); --glass-border: rgba(212,175,55,0.3);
  --max-w: 1400px;
}

body { font-family: 'Poppins', sans-serif; background: var(--ivory); color: var(--text-dark); overflow-x: hidden; line-height: 1.7; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-3); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-2)); border-radius: 3px; }

/* ===== PARTICLES ===== */
#particles-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute; width: 4px; height: 4px;
  background: radial-gradient(circle, var(--gold-2), transparent);
  border-radius: 50%; animation: floatParticle linear infinite; opacity: 0;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ===== GOLD TEXT ===== */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-2) 60%, var(--gold-3) 80%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px var(--shadow-gold), 0 0 40px rgba(212,175,55,0.2); }
  50%       { box-shadow: 0 0 40px var(--shadow-gold), 0 0 80px rgba(212,175,55,0.4); }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.reveal       { opacity: 0; transform: translateY(40px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,248,0.75);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.navbar.scrolled { background: rgba(255,255,248,0.97); box-shadow: 0 8px 40px rgba(212,175,55,0.15); }
.nav-logo {
  font-family: 'Dancing Script', cursive; font-size: 1.9rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none; letter-spacing: 0.5px; flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; position: relative; transition: color 0.3s; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-nav {
  font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 20px;
  border-radius: 50px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; white-space: nowrap;
}
.btn-nav-outline { border: 1.5px solid var(--gold); color: var(--gold-dark); background: transparent; }
.btn-nav-outline:hover { background: var(--gold); color: white; box-shadow: 0 8px 25px var(--shadow-gold); }
.btn-nav-gold { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2)); color: white; box-shadow: 0 6px 20px var(--shadow-gold); }
.btn-nav-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 35px var(--shadow-gold); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: var(--gold-dark); border-radius: 2px; transition: all 0.3s; display: block; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(255,255,248,0.98); backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-dark);
  text-decoration: none; transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold-dark); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px; font-size: 1.5rem;
  color: var(--text-mid); cursor: pointer; background: none; border: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 100px 40px 60px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(247,231,206,0.4) 0%, transparent 50%),
    linear-gradient(160deg, var(--ivory) 0%, var(--ivory-2) 40%, var(--champagne) 70%, var(--ivory-3) 100%);
}
.hero-bg-ornament { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-bg-ornament-1 { width: 700px; height: 700px; top: -200px; right: -200px; background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%); animation: rotateSlow 30s linear infinite; }
.hero-bg-ornament-2 { width: 500px; height: 500px; bottom: -150px; left: -150px; background: radial-gradient(circle, rgba(247,231,206,0.3) 0%, transparent 70%); }
.hero-content { max-width: var(--max-w); width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(232,197,71,0.1));
  border: 1px solid rgba(212,175,55,0.4); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 50px; font-family: 'Cinzel', serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 28px; animation: float 4s ease-in-out infinite;
}
.hero-badge i { font-size: 0.9rem; color: var(--gold); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 12px; color: var(--text-dark); }
.hero-title .line-gold { display: block; background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-2) 60%, var(--gold-3) 80%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-family: 'Cinzel', serif; font-size: clamp(0.9rem, 1.5vw, 1.3rem); font-weight: 400; letter-spacing: 4px; color: var(--text-light); text-transform: uppercase; margin-bottom: 24px; }
.hero-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 520px; margin-bottom: 40px; line-height: 1.9; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-glass-card {
  background: var(--glass-bg); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border); border-radius: 30px; padding: 36px 32px;
  box-shadow: 0 40px 120px var(--shadow-dark), 0 0 60px rgba(212,175,55,0.1);
  text-align: center; width: 100%; max-width: 420px; animation: float 6s ease-in-out infinite;
}
.hero-card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 18px; margin-bottom: 20px; display: block; }
.hero-card-icon { font-size: 3rem; margin-bottom: 16px; display: block; filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)); }
.hero-card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.hero-card-sub { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 20px; }
.hero-location-pill { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(232,197,71,0.08)); border: 1px solid rgba(212,175,55,0.35); padding: 10px 22px; border-radius: 50px; font-size: 0.82rem; color: var(--text-mid); margin-bottom: 20px; }
.hero-location-pill i { color: var(--gold); }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 8px; }
.hero-rating i { color: var(--gold); font-size: 1rem; }
.hero-rating-text { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 1.5px; color: var(--text-light); }
.floating-badge { position: absolute; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; border-radius: 20px; padding: 12px 20px; font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; box-shadow: 0 10px 30px var(--shadow-gold); animation: float 5s ease-in-out infinite; }
.floating-badge i { margin-right: 4px; }
.floating-badge-1 { top: -20px; right: -20px; animation-delay: 0s; }
.floating-badge-2 { bottom: 30px; left: -30px; animation-delay: 1.5s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px;
  border-radius: 60px; text-decoration: none;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-2) 100%);
  color: white; box-shadow: 0 15px 50px var(--shadow-gold);
  transition: all 0.4s ease; position: relative; overflow: hidden; border: none; cursor: pointer;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transform: translateX(-100%); transition: transform 0.6s ease; }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 25px 70px var(--shadow-gold); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px;
  border-radius: 60px; text-decoration: none; background: rgba(255,255,248,0.9);
  color: var(--gold-dark); border: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(212,175,55,0.15); transition: all 0.4s ease; backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: var(--gold); color: white; transform: translateY(-3px); box-shadow: 0 20px 60px var(--shadow-gold); }

/* ===== SECTION BASE ===== */
section { padding: 100px 40px; position: relative; z-index: 1; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px; }
.section-tag::before, .section-tag::after { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-tag::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 900; color: var(--text-dark); line-height: 1.15; margin-bottom: 20px; }
.section-desc { font-size: 1rem; color: var(--text-light); max-width: 600px; line-height: 1.9; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.gold-divider { width: 80px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-2), var(--gold-dark)); border-radius: 2px; margin: 20px auto; }
.gold-divider.left { margin: 20px 0; }

/* ===== SERVICES ===== */
.services { background: var(--ivory-3); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.service-card {
  background: var(--glass-bg); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border); border-radius: 28px; padding: 44px 32px;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 40px 120px var(--shadow-dark), 0 0 60px rgba(212,175,55,0.2); border-color: rgba(212,175,55,0.5); }
.service-icon { font-size: 4.5rem; margin-bottom: 20px; display: block; filter: drop-shadow(0 0 15px rgba(212,175,55,0.4)); transition: filter 0.4s, transform 0.4s; }
.service-card:hover .service-icon { filter: drop-shadow(0 0 30px rgba(212,175,55,0.7)); transform: scale(1.1); }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); text-decoration: none; transition: gap 0.3s; }
.service-link:hover { gap: 14px; }

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--ivory-2); }
.swiper-container { margin-top: 60px; padding-bottom: 60px; }
.swiper-slide { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); position: relative; aspect-ratio: 4/3; background: var(--champagne); }
.portfolio-item { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.portfolio-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.swiper-slide:hover .portfolio-img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,36,22,0.85) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; padding: 28px; }
.swiper-slide:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { color: white; }
.portfolio-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.portfolio-info p { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-3); }
.swiper-pagination-bullet { background: var(--gold) !important; opacity: 0.4 !important; width: 10px !important; height: 10px !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 30px !important; border-radius: 5px !important; }
.swiper-button-next, .swiper-button-prev { color: var(--gold) !important; background: var(--glass-bg); backdrop-filter: blur(20px); width: 48px !important; height: 48px !important; border-radius: 50%; border: 1px solid var(--glass-border); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; font-weight: 900 !important; }

/* ===== PRICING ===== */
.pricing { background: var(--ivory-3); }
.pricing-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
.pricing-card {
  background: var(--glass-bg); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border); border-radius: 32px; padding: 52px 44px;
  box-shadow: 0 40px 120px var(--shadow-dark); position: relative; overflow: hidden;
  animation: goldPulse 4s ease-in-out infinite;
}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-2), var(--gold-dark)); background-size: 200% auto; animation: shimmer 3s linear infinite; }
.pricing-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: white; padding: 8px 20px; border-radius: 50px; font-family: 'Cinzel', serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-2) 70%, var(--gold-3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.pricing-price-sub { font-family: 'Cinzel', serif; font-size: 0.78rem; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li { display: flex; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(212,175,55,0.1); font-size: 0.95rem; color: var(--text-mid); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.pricing-deco-img { width: 100%; height: 200px; object-fit: cover; border-radius: 20px; margin-bottom: 28px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.pricing-info h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.3; }
.pricing-info p { font-size: 1rem; color: var(--text-light); line-height: 1.9; margin-bottom: 28px; }
.pricing-perks { list-style: none; }
.pricing-perks li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 0.95rem; color: var(--text-mid); }
.pricing-perks li i { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--ivory-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.testimonial-card {
  background: var(--glass-bg); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border); border-radius: 28px; padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07); transition: all 0.4s ease;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 40px 100px rgba(0,0,0,0.12), 0 0 40px rgba(212,175,55,0.1); }
.testimonial-quote-icon { font-size: 3rem; color: var(--gold-3); opacity: 0.5; margin-bottom: 12px; display: block; font-family: Georgia, serif; line-height: 1; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars i { color: var(--gold); font-size: 1rem; }
.testimonial-text { font-style: italic; font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold-2)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.author-event { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, var(--text-dark) 0%, #3D2E14 40%, #2C2416 100%); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.15) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(232,197,71,0.1) 0%, transparent 60%); }
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-tag { display: inline-flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-3); margin-bottom: 24px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 20px; }
.cta-title span { background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 44px; line-height: 1.9; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 18px 44px; border-radius: 60px; text-decoration: none; background: white; color: var(--text-dark); box-shadow: 0 15px 50px rgba(0,0,0,0.3); transition: all 0.4s ease; }
.btn-cta-white:hover { transform: translateY(-4px); box-shadow: 0 25px 70px rgba(0,0,0,0.4); }
.btn-cta-gold { display: inline-flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 18px 44px; border-radius: 60px; text-decoration: none; background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2)); color: white; box-shadow: 0 15px 50px var(--shadow-gold); transition: all 0.4s ease; }
.btn-cta-gold:hover { transform: translateY(-4px); box-shadow: 0 25px 70px var(--shadow-gold); }

/* ===== FOOTER ===== */
footer { background: var(--text-dark); padding: 80px 40px 40px; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { max-width: var(--max-w); margin: 0 auto 60px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
.footer-logo { font-family: 'Dancing Script', cursive; font-size: 2.2rem; font-weight: 700; background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; display: block; margin-bottom: 12px; }
.footer-tagline { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; transition: all 0.3s; }
.social-link:hover { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-color: var(--gold); color: white; transform: translateY(-3px); box-shadow: 0 8px 20px var(--shadow-gold); }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-3); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-3); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold-3); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-bottom span { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(212,175,55,0.5); }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content { gap: 50px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }

  .hero { padding: 90px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-visual { display: none; }

  section { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-section { padding: 70px 20px; }
  footer { padding: 60px 20px 32px; }
}

@media (max-width: 600px) {
  .hero-badge { font-size: 0.62rem; padding: 7px 14px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-item { min-width: 80px; }
  .pricing-price { font-size: 4rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons a { width: 100%; max-width: 320px; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 0.76rem; }
  .swiper-button-next, .swiper-button-prev { display: none !important; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  text-decoration: none; transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.7); }
