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

:root {
  --primary-color: #ff8426;
  --primary-hover: #e67622;
  --primary-light: #fff3e6;
  --secondary-color: #1a1a1a;
  --text-dark: #2d2d2d;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-primary,
.text-brand {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

/* Transitions & Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 1rem;
  position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.95);
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding-left: 25px;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: navFadeIn 0.3s ease forwards;
  }
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 132, 38, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 132, 38, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url("img/clear-junk-dubai-1.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 132, 38, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-light);
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

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

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Stats Section */
.stats-strip {
  padding: 60px 0;
  background: var(--secondary-color);
  color: var(--white);
}

.stat-item h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Services */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-tag {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 50px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-item {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.bento-item p {
  color: var(--text-muted);
}

.bento-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.bento-item.featured {
  grid-column: span 2;
  background: var(--primary-color);
  color: var(--white);
  border: none;
}

.bento-item.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.bento-item.featured .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: var(--transition);
}

.bento-item:hover .icon-wrapper {
  background: var(--primary-color);
  color: var(--white);
}

/* About & Why Choose Sections */
.image-section {
  padding: 100px 0;
}

.section-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.section-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.section-image-wrapper:hover img {
  transform: scale(1.05);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.feature-list i {
  color: var(--primary-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* How It Works */
.process-section {
  padding: 100px 0;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.step-circle {
  width: 90px;
  height: 90px;
  background: var(--white);
  border: 4px solid var(--primary-light);
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  margin: 0 auto 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  transform: rotate(-5deg);
}

.process-step:hover .step-circle {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: rotate(0deg) translateY(-10px);
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
}

.testimonial-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
  border: 1px solid #eee;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.author-info {
  display: flex;
  align-items: center;
}

.author-details h5 {
  margin: 0;
  font-weight: 700;
}

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

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

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  padding: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: var(--primary-light);
}

.accordion-button::after {
  background-size: 1.25rem;
}

.accordion-body {
  padding: 25px;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--white);
}

.faq-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--primary-color);
}

/* Floating Actions */
.floating-cta {
  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;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background-color: #25d366;
}
.call-btn {
  background-color: var(--primary-color);
}

/* Form Styles */
.form-control {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item.featured {
    grid-column: span 1;
  }
  .hero-section {
    padding-top: 140px;
  }
}
