:root {
    --primary-color: {{PRIMARY_COLOR}};
    --primary-dark: {{PRIMARY_DARK}};
    --secondary-color: {{SECONDARY_COLOR}};
    --accent-color: {{ACCENT_COLOR}};
    --text-dark: #1a1a2e;
    --text-light: #6b6b7b;
    --bg-cream: #faf8f5;
    --bg-white: #ffffff;
    --gold: #c9a962;
    --gold-light: #e8d9a8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-dark); line-height: 1.7; background-color: var(--bg-cream); }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); padding: 15px 0; transition: all 0.4s ease; border-bottom: 1px solid rgba(201,169,98,0.1); }
.navbar.scrolled { padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--text-dark); letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; position: relative; padding: 5px 0; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: white !important; padding: 12px 28px !important; border-radius: 30px; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-menu-btn span { display: block; width: 25px; height: 2px; background: var(--text-dark); margin: 6px 0; transition: all 0.3s ease; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(135deg, var(--bg-cream) 0%, #f5f0e8 100%); overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 70%; height: 150%; background: linear-gradient(135deg, rgba(201,169,98,0.08) 0%, rgba(232,217,168,0.05) 100%); border-radius: 50%; animation: float 8s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(5deg); } }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-text { padding-right: 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: white; padding: 8px 20px; border-radius: 30px; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 30px; }
.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; color: var(--text-dark); }
.hero-title span { color: var(--gold); font-style: italic; }
.hero-description { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 480px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: white; padding: 16px 36px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(201,169,98,0.3); border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,169,98,0.4); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--text-dark); padding: 16px 36px; border: 2px solid var(--gold); border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; transition: all 0.4s ease; }
.btn-secondary:hover { background: var(--gold); color: white; }
.hero-image { position: relative; }
.hero-image-wrapper { position: relative; border-radius: 200px 200px 30px 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.hero-image img { width: 100%; height: 600px; object-fit: cover; }
.hero-stats { position: absolute; bottom: -30px; left: -30px; display: flex; gap: 20px; }
.stat-card { background: white; padding: 25px 30px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* Sections Common */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; }
.section-badge::before, .section-badge::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-size: 3rem; margin-bottom: 20px; color: var(--text-dark); }
.section-description { color: var(--text-light); font-size: 1.05rem; }

/* About */
.about { padding: 120px 0; background: white; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.about-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--gold); border-radius: 20px; z-index: -1; }
.about-text h3 { font-size: 2.2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.about-feature { display: flex; align-items: center; gap: 12px; }
.about-feature i { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; }
.about-feature span { font-weight: 500; font-size: 0.95rem; }

/* Services */
.services { padding: 120px 0; background: var(--bg-cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: white; border-radius: 25px; padding: 40px 30px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, rgba(201,169,98,0.1) 0%, rgba(232,217,168,0.1) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 2rem; color: var(--gold); transition: all 0.4s ease; }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: white; transform: scale(1.1); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.service-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.service-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }

/* Gallery */
.gallery { padding: 120px 0; background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; min-height: 200px; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 25px; opacity: 0; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: white; font-size: 1.3rem; }

/* Team */
.team { padding: 120px 0; background: var(--bg-cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-member { text-align: center; }
.team-image { position: relative; margin-bottom: 25px; border-radius: 20px; overflow: hidden; }
.team-image img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.5s ease; }
.team-member:hover .team-image img { transform: scale(1.05); }
.team-social { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); padding: 30px 15px 15px; display: flex; justify-content: center; gap: 15px; transform: translateY(100%); transition: transform 0.4s ease; }
.team-member:hover .team-social { transform: translateY(0); }
.team-social a { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; transition: all 0.3s ease; }
.team-social a:hover { background: var(--gold); color: white; }
.team-member h3 { font-size: 1.4rem; margin-bottom: 5px; }
.team-member p { color: var(--text-light); font-size: 0.9rem; }

/* Testimonials */
.testimonials { padding: 120px 0; background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d44 100%); color: white; }
.testimonials .section-badge { color: var(--gold-light); }
.testimonials .section-title { color: white; }
.testimonials .section-description { color: rgba(255,255,255,0.7); }
.testimonial-slider { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-card { padding: 40px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-style: italic; line-height: 1.6; margin-bottom: 30px; color: rgba(255,255,255,0.9); }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testimonial-author img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.testimonial-author-info h4 { font-size: 1.2rem; margin-bottom: 5px; }
.testimonial-author-info p { color: var(--gold-light); font-size: 0.9rem; }
.testimonial-stars { color: var(--gold); margin-bottom: 20px; font-size: 1.2rem; }

/* Pricing */
.pricing { padding: 120px 0; background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card { background: var(--bg-cream); border-radius: 25px; padding: 50px 40px; text-align: center; position: relative; transition: all 0.4s ease; }
.pricing-card.featured { background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d44 100%); color: white; transform: scale(1.05); }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: white; padding: 8px 25px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.pricing-card h3 { font-size: 1.6rem; margin-bottom: 20px; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--gold); margin-bottom: 30px; }
.pricing-card.featured .pricing-price { color: var(--gold-light); }
.pricing-price span { font-size: 1rem; font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 35px; }
.pricing-features li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.95rem; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-features li i { color: var(--gold); margin-right: 10px; }

/* Contact */
.contact { padding: 120px 0; background: var(--bg-cream); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-light); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 25px; }
.contact-item { display: flex; align-items: center; gap: 20px; }
.contact-item i { width: 55px; height: 55px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }
.contact-item-text h4 { font-size: 1.1rem; margin-bottom: 5px; }
.contact-item-text p { color: var(--text-light); margin: 0; font-size: 0.95rem; }
.contact-form { background: white; padding: 50px; border-radius: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 10px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 16px 20px; border: 2px solid #e8e8e8; border-radius: 12px; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Footer */
.footer { background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d44 100%); color: white; padding: 80px 0 30px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo-text { color: white; margin-bottom: 20px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.7); margin-bottom: 25px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 45px; height: 45px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-column h4 { font-size: 1.2rem; margin-bottom: 25px; color: var(--gold-light); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-column ul a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.8rem; text-decoration: none; box-shadow: 0 5px 25px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { padding-right: 0; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-description { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-image { order: -1; }
    .hero-stats { position: static; justify-content: center; margin-top: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh; background: white; flex-direction: column; padding: 100px 40px; gap: 20px; transition: right 0.4s ease; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; z-index: 1001; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .about-content { grid-template-columns: 1fr; }
    .about-image::before { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { flex-direction: column; align-items: center; }
    .stat-card { width: 100%; max-width: 200px; }
    .about-features { grid-template-columns: 1fr; }
    .contact-form { padding: 30px 20px; }
}
