* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; line-height: 1.7; background: #faf9f7; overflow-x: hidden; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.gold { color: #d4af37; }

/* Header */
header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 15px 0; transition: all 0.4s ease; }
header.scrolled { background: rgba(10, 25, 47, 0.85); backdrop-filter: blur(15px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); padding: 8px 0; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 45px; width: auto; margin-right: 12px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a { text-decoration: none; color: rgba(255,255,255,0.8); font-weight: 500; transition: 0.3s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: #d4af37; transition: 0.3s; }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a:hover, .nav-menu a.active { color: #fff; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: #fff; margin: 3px 0; }

/* Buttons */
.btn { display: inline-block; padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.4s; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #d4af37, #b8941e); color: #fff; box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }
.btn-light { background: #fff; color: #0a192f; }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.text-center { text-align: center; margin-top: 40px; }

/* Hero */
.hero { min-height: 100vh; background: linear-gradient(135deg, #0a192f, #1a2a4a); display: flex; align-items: center; position: relative; overflow: hidden; }
.floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; background: rgba(212, 175, 55, 0.05); }
.shape-1 { width: 300px; height: 300px; top: -100px; right: -100px; animation: float 8s infinite; }
.shape-2 { width: 200px; height: 200px; bottom: -50px; left: -50px; animation: float 10s infinite reverse; }
.shape-3 { width: 150px; height: 150px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: float 12s infinite; }
@keyframes float { 0% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(30px,-30px) rotate(180deg); } 100% { transform: translate(0,0) rotate(360deg); } }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 800px; }
.hero-tag { display: inline-block; background: rgba(212, 175, 55, 0.15); color: #d4af37; padding: 8px 25px; border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; border: 1px solid rgba(212, 175, 55, 0.2); }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 35px; }
.hero-buttons .btn { margin-right: 15px; margin-bottom: 10px; }

/* Stats */
.stats-section { background: #fff; padding: 60px 0; border-bottom: 1px solid #eee; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: #0a192f; display: block; line-height: 1; }
.stat-label { color: #666; font-weight: 500; font-size: 0.95rem; }

/* Sections */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle { display: inline-block; color: #d4af37; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 10px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #0a192f; margin-bottom: 15px; }
.section-header p { color: #666; max-width: 600px; margin: 0 auto; }

/* Services Grid */
.services-highlights { padding: 100px 0; background: #faf9f7; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-item { background: #fff; padding: 40px 25px; border-radius: 15px; text-align: center; transition: all 0.5s; border: 1px solid #f0f0f0; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.service-item:hover { transform: translateY(-15px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); border-color: #d4af37; }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: #d4af37; transition: 0.3s; }
.service-item:hover .service-icon { background: linear-gradient(135deg, #d4af37, #b8941e); color: #fff; }
.service-item h3 { font-size: 1.3rem; margin-bottom: 12px; color: #0a192f; }
.service-item p { color: #666; font-size: 0.95rem; }

/* Testimonials */
.testimonials { padding: 100px 0; background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.testimonial-item { background: #faf9f7; padding: 40px; border-radius: 15px; border-left: 5px solid #d4af37; }
.quote-icon { font-size: 2rem; color: #d4af37; opacity: 0.3; margin-bottom: 15px; }
.testimonial-item p { font-size: 1.1rem; color: #333; margin-bottom: 20px; font-style: italic; }
.client-info h4 { color: #0a192f; font-weight: 700; }
.client-info span { color: #666; font-size: 0.9rem; }

/* CTA */
.cta { padding: 100px 0; background: linear-gradient(135deg, #0a192f, #1a2a4a); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; border-radius: 50%; background: rgba(212,175,55,0.05); }
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #fff; margin-bottom: 15px; }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.2rem; margin-bottom: 30px; }

/* Page Banner */
.page-banner { padding: 160px 0 80px; background: linear-gradient(135deg, #0a192f, #1a2a4a); text-align: center; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: #fff; }
.page-banner p { color: rgba(255,255,255,0.7); font-size: 1.2rem; }

/* About */
.about-content { padding: 100px 0; }
.about-grid { display: flex; gap: 60px; align-items: center; }
.about-text { flex: 1; }
.about-text .subtitle { color: #d4af37; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; color: #0a192f; margin-bottom: 20px; }
.about-text p { color: #555; margin-bottom: 20px; }
.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.mv-block { background: #faf9f7; padding: 25px; border-radius: 10px; }
.mv-block i { color: #d4af37; font-size: 1.5rem; margin-bottom: 10px; }
.mv-block h3 { margin-bottom: 8px; color: #0a192f; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; border-radius: 15px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: #d4af37; color: #0a192f; padding: 15px 25px; border-radius: 10px; font-weight: 700; box-shadow: 0 10px 30px rgba(212,175,55,0.3); }
.values-section { padding: 80px 0; background: #faf9f7; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.value-item { text-align: center; padding: 30px; background: #fff; border-radius: 15px; transition: 0.3s; }
.value-item:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.value-item i { font-size: 2.5rem; color: #d4af37; margin-bottom: 15px; }
.value-item h3 { color: #0a192f; margin-bottom: 10px; }

/* Services Detail */
.services-full { padding: 80px 0; }
.service-category { border-bottom: 2px solid #d4af37; padding-bottom: 15px; margin-bottom: 40px; }
.category-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: #0a192f; }
.service-detail { display: flex; gap: 30px; align-items: flex-start; padding: 30px 0; border-bottom: 1px solid #eee; }
.service-detail:last-child { border-bottom: none; }
.service-icon-large { min-width: 70px; height: 70px; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #d4af37; }
.service-text h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #0a192f; margin-bottom: 10px; }
.service-text p { color: #555; }

/* Contact */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #0a192f; margin-bottom: 20px; }
.contact-info > p { color: #666; margin-bottom: 30px; }
.contact-detail { display: flex; gap: 20px; align-items: center; margin-bottom: 25px; }
.contact-detail i { width: 50px; height: 50px; background: #faf9f7; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #d4af37; font-size: 1.2rem; }
.contact-detail h4 { color: #0a192f; font-weight: 600; }
.contact-detail p { color: #666; }
.social-links { margin-top: 30px; }
.social-links a { display: inline-block; width: 45px; height: 45px; background: #faf9f7; border-radius: 50%; text-align: center; line-height: 45px; color: #0a192f; margin-right: 10px; transition: 0.3s; }
.social-links a:hover { background: #d4af37; color: #fff; transform: translateY(-3px); }
.contact-form .form-group { margin-bottom: 25px; }
.contact-form label { display: block; font-weight: 600; color: #0a192f; margin-bottom: 8px; font-size: 0.9rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 20px; border: 1px solid #e0e0e0; border-radius: 10px; font-family: 'Inter', sans-serif; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.success-message { background: #e8f5e9; color: #2e7d32; padding: 15px; border-radius: 10px; margin-top: 15px; }
.error-message { background: #ffebee; color: #c62828; padding: 15px; border-radius: 10px; margin-top: 15px; }

/* Footer */
footer { background: #0a192f; color: rgba(255,255,255,0.7); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-about h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.5rem; margin-bottom: 15px; }
.social-icons a { color: rgba(255,255,255,0.5); margin-right: 15px; font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { color: #d4af37; }
.footer-links h4, .footer-contact h4 { color: #fff; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.footer-links ul a:hover { color: #d4af37; padding-left: 5px; }
.footer-contact i { width: 25px; color: #d4af37; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) { .hero-content h1 { font-size: 3.5rem; } .about-grid { flex-direction: column; } .contact-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .stats-grid { grid-template-columns: 1fr 1fr; } .mission-vision { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .hamburger { display: flex; } .nav-menu { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: #0a192f; flex-direction: column; padding: 30px; text-align: center; gap: 15px; } .nav-menu.active { display: flex; } .hero-content h1 { font-size: 2.8rem; } .section-header h2 { font-size: 2.2rem; } .cta-content h2 { font-size: 2.2rem; } .service-detail { flex-direction: column; align-items: center; text-align: center; } .testimonial-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; text-align: center; } .stat-number { font-size: 2.5rem; } .experience-badge { position: relative; bottom: 0; right: 0; margin-top: 20px; text-align: center; } }