/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables for Theme (Indian-inspired luxury palette) */
:root {
  --primary: #E65100;
  /* Deep Saffron / Terracotta */
  --primary-light: #FF833A;
  --secondary: #1A237E;
  /* Deep Indigo */
  --secondary-light: #534BAE;
  --accent: #FFC107;
  /* Warm Gold */

  --bg-color: #FAFAFA;
  --surface: #FFFFFF;
  --text-main: #212121;
  --text-muted: #5F6368;
  --border-color: #E0E0E0;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.4);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.2);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header .container {
  max-width: 100%;
}

.header.scrolled {
  padding: 5px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo span {
  color: var(--primary);
}

.logo small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-main);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.contact-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.contact-phone i {
  color: var(--primary);
}

.jd-verified {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800 !important;
  border: 1px solid rgba(255, 152, 0, 0.2);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}

.jd-verified i {
  color: #ff9800 !important;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
  background: none;
  border: none;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(26, 35, 126, 0.9) 0%, rgba(26, 35, 126, 0.6) 50%, rgba(26, 35, 126, 0.2) 100%);
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 650px;
}

.hero-subtitle {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border-radius: 0 20px 20px 0;
  animation: slideInLeft 0.8s ease forwards;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  animation: slideInUp 1s ease forwards;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: slideInUp 1.2s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  animation: fadeIn 1.5s ease forwards;
}

/* Section Common */
.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.3);
  z-index: 2;
}

.service-content {
  padding: 35px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.service-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* Internal Page Headers */
.page-header {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, #0d145c 100%);
  color: white;
  text-align: center;
  position: relative;
}

.page-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: white;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Content Layouts */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-img-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.content-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transform: translate(15px, 15px);
  z-index: -1;
  transition: var(--transition);
}

.content-img-box:hover::before {
  transform: translate(20px, 20px);
}

.feature-list {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 81, 0, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.feature-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: scale(1.1);
}

/* Footer Base */
.footer {
  background: #0a0e2a;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-title {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  color: white;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-header:hover {
  background: rgba(230, 81, 0, 0.02);
}

.faq-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--secondary);
}

.faq-icon {
  transition: var(--transition);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fafafa;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding: 0 25px 25px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Brands Showcase */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.brand-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.6;
  transition: var(--transition);
}

.brand-item:hover {
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

/* Animations Utils */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card i.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: rgba(230, 81, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h5 {
  color: var(--secondary);
  font-size: 1.1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-overlay {
    background: rgba(26, 35, 126, 0.8);
  }

  .hero-subtitle {
    border-radius: 20px;
    border-left: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}