@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --primary-color: #ff5e00;   /* Vibrant Saffron */
  --secondary-color: #ff9900; /* Gold */
  --bg-color: #1a1a1a;        /* Dark Charcoal */
  --card-bg: rgba(255, 255, 255, 0.05); /* Glassmorphism base */
  --text-light: #f5f5f5;
  --text-muted: #aaaaaa;
}

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

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

/* Typography */
h1, h2, h3 {
  font-weight: 800;
  letter-spacing: 1px;
}
.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: padding 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header.scrolled {
  padding: 15px 50px;
  background: rgba(26, 26, 26, 0.95);
}
.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: 1;
}
.hero img.bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate linear;
}
@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 64px;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease both;
}
.hero-content p {
  font-size: 22px;
  margin-bottom: 40px;
  color: var(--text-muted);
  animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease 0.4s both;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 94, 0, 0.5);
}

/* Page Headers (for inner pages) */
.page-header {
  padding: 180px 20px 80px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-header h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

/* Sections Structure */
section {
  padding: 80px 50px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards (Glassmorphism) */
.service-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: transform 0.4s ease, background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
}
.service-icon {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--text-muted);
}

/* Images inside grid */
.image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.image-wrapper img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.image-wrapper:hover img {
  transform: scale(1.05);
}

/* Contact Area */
.contact-info-list {
  list-style: none;
  margin-bottom: 40px;
}
.contact-info-list li {
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-info-list li i {
  color: var(--primary-color);
  font-size: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: border 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.map-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 400px; /* map height */
  margin-top: 50px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 60px;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn {
  background: #25d366;
}
.call-btn {
  background: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  header {
    padding: 20px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    flex-direction: column;
    padding-top: 100px;
    padding-left: 30px;
    transition: right 0.4s ease;
  }
  .nav-links.nav-active {
    right: 0;
  }
  .menu-toggle {
    display: block;
    z-index: 10001;
  }
  .hero-content h1 { font-size: 48px; }
  section { padding: 60px 20px; }
}
