:root {
  --primary: #6c0e23; /* Deep Maroon */
  --primary-light: #9e1b38;
  --secondary: #d4af37; /* Metallic Gold */
  --secondary-light: #f4d03f;
  --secondary-dark: #b5952f;
  --dark: #1a1a1a;
  --text: #4a4a4a;
  --light-bg: #fdfbf7;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(108, 14, 35, 0.15);
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-color: var(--light-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  margin-bottom: 15px;
}

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

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

.py-large {
  padding: 100px 0;
}

.text-center { text-align: center; }
.gold-text { color: var(--secondary); }
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 40px; }
.mb-4 { margin-bottom: 20px; }

/* Buttons */
.btn-primary, .btn-primary-sm, .btn-outline {
  display: inline-block;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(108, 14, 35, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(108, 14, 35, 0.4);
  color: var(--white);
}

.btn-primary-sm {
  background: var(--secondary);
  color: var(--dark);
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-primary-sm:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 34px;
  font-size: 1.1rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.main-header.scrolled .logo h1 {
  color: var(--primary);
}

.logo span {
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a:not(.btn-primary-sm) {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.main-header.scrolled .nav-links a:not(.btn-primary-sm) {
  color: var(--dark);
}

.nav-links a:not(.btn-primary-sm)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:not(.btn-primary-sm):hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}
.main-header.scrolled .mobile-menu-btn {
  color: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 250px;
  box-shadow: var(--shadow);
  z-index: 1001;
  border-radius: var(--radius);
  top: 100%;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
}
.dropdown-content a {
  color: var(--dark) !important;
  padding: 12px 20px !important;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
}
.dropdown-content a::after {
  display: none !important;
}
.dropdown-content a:hover {
  background-color: var(--light-bg);
  color: var(--primary) !important;
  padding-left: 25px !important; 
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(108, 14, 35, 0.7));
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  position: relative;
  z-index: 5;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw + 1rem, 4rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 25px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero .tagline {
  font-size: clamp(1.1rem, 2vw + 1rem, 1.4rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  color: var(--dark);
}

.hero-form-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--primary);
  text-align: center;
}

.hero-form-wrapper p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 25px;
  color: #666;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Common */
.section-subtitle {
  color: var(--secondary-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-center .section-subtitle { justify-content: center; }

.section-title {
  font-size: clamp(2rem, 4vw + 1rem, 2.8rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.img-frame {
  position: relative;
  border-radius: var(--radius);
  z-index: 1;
}

.img-frame img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.frame-border {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--secondary);
  border-radius: var(--radius);
  z-index: -1;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(108, 14, 35, 0.4);
  border: 5px solid var(--white);
}

.experience-badge .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services */
.bg-light { background-color: #f5f0e6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  display: block;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--secondary);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
  border: 1px dashed var(--secondary);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(360deg);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 250px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Why Choose Us */
.why-us-section {
  background: linear-gradient(rgba(26,26,26,0.95), rgba(26,26,26,0.95)), url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
  color: var(--white);
  position: relative;
}

.light-text .section-title { color: var(--white); }

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px;
  width: calc(33.333% - 20px);
  min-width: 300px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px); border-color: var(--secondary);
}

.feature-item .icon-box {
  font-size: 2rem;
  color: var(--secondary-light);
  flex-shrink: 0;
}

.feature-item h4 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Everything banner */
.everything-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.everything-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.everything-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}
.faq-question {
  padding: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text);
}
.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Quote */
.quote-banner {
  padding: 60px 20px;
  background: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
  position: relative;
  text-align: center;
  color: var(--white);
}
.quote-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}
.quote-banner .container { position: relative; z-index: 1; }
.quote-banner i { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }
.quote-banner h2 { color: var(--white); font-style: italic; font-size: 2.5rem; line-height: 1.3; }

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  overflow: hidden;
}

.contact-info {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 60px;
}

.contact-info .section-subtitle, .contact-info .section-title {
  color: var(--white);
}

.method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.method-card:hover { background: rgba(255,255,255,0.15); transform: translateX(10px); }

.method-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}
.method-icon.whatsapp { background: #25D366; }

.method-details h4 { color: var(--secondary-light); font-family: 'Poppins', sans-serif; font-size: 1rem; margin-bottom: 0; }
.method-details a, .method-details p { font-size: 1.1rem; font-weight: 500; color: #fff;}
.method-details .sub-text { font-size: 0.8rem; margin: 0; opacity: 0.8; font-weight: 300;}

.contact-form-wrapper { padding: 60px; }

/* Lead Form */
.lead-form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fdfdfd;
  transition: var(--transition);
}

.lead-form textarea { padding-left: 15px; }

.lead-form i {
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--secondary-dark);
}
.lead-form .fa-comment-alt { display: none; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-submit:hover { background: var(--primary-light); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(108,14,35,0.3); }

/* Sticky Contact */
.sticky-contact {
  position: fixed;
  left: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sticky-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  position: relative;
}

.call-btn { background: linear-gradient(135deg, #007bff, #0056b3); }
.wa-btn { background: #25D366; }

.sticky-btn .tooltip {
  position: absolute;
  left: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sticky-btn:hover .tooltip {
  opacity: 1; visibility: visible; left: 75px;
}

/* Footer Element */
.main-footer {
  background: #111;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-about h2 { color: var(--white); margin-bottom: 10px; }
.footer-about span { color: var(--secondary); }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--secondary); }
.social-links a:hover { background: var(--secondary); color: var(--dark); transform: translateY(-3px); }

.footer-links h3 { color: var(--white); margin-bottom: 25px; font-family: 'Poppins', sans-serif; font-size: 1.2rem; position: relative; }
.footer-links h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--secondary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--secondary); padding-left: 5px; }

/* Responsive */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .about-container, .contact-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .contact-info { padding: 40px; }
  .contact-form-wrapper { padding: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white); padding: 20px;
    flex-direction: column; gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: var(--transition);
  }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .nav-links a:not(.btn-primary-sm) { color: var(--dark); }
  .mobile-menu-btn { display: block; }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    min-width: 100%;
    padding: 0;
  }
  .dropdown.active .dropdown-content {
    display: block;
    margin-top: 10px;
    border-left: 2px solid var(--secondary);
    padding-left: 5px;
  }
  
  .features-grid { flex-direction: column; }
  .feature-item { width: 100%; }
  .footer-container { grid-template-columns: 1fr; }
  .experience-badge { right: -10px; bottom: -20px; transform: scale(0.8); }
}
