/* 7Oak Developers - Premium Landing Page Styles */

:root {
  --primary-red: #e04052;
  --primary-orange: #f89e3e;
  --primary-green: #2bb454;
  --primary-light-green: #97cc53;
  --white: #ffffff;
  --black: #000000;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border: #e0e0e0;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  --gradient-secondary: linear-gradient(135deg, var(--primary-green), var(--primary-light-green));
}


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

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


.logo-animation .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.brand-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  animation: pulse 2s infinite;
}

.brand-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  animation: pulse 2s infinite 0.5s;
}

.brand-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease;
}

.loading-spinner {
  margin-top: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/* Typography */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary-custom {
  background: var(--gradient-secondary);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-secondary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light-green), var(--primary-green));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-call {
  background: var(--primary-green);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-call:hover {
  background: var(--primary-light-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

.btn-cta {
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  transform: translateY(-2px);
  color: var(--white);
}

/* Navigation */

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-toggler {
  border: none;
  font-size: 1.25rem;
}

#mainNavbar {
  background: #ffffff;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  color:#333;
}

#mainNavbar.scrolled {
  background: var(--dark);
  box-shadow: var(--shadow-sm);
}

.navbar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .brand-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
}

.navbar-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.navbar-brand .brand-subtitle {
  font-size: 0.8rem;
  color: var(--primary-orange);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-red) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(26, 26, 26, 0) 20%, rgba(224, 64, 83, 0) 100%),
    url("images/banner.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(26 26 26 / 43%);
}
.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f7941d; /* example for call-btn */
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.floating-buttons a.whatsapp-btn {
  background-color: #25d366;
}

.floating-buttons i {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}


@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(224, 64, 82, 0.2);
  border: 1px solid var(--primary-red);
  color: var(--primary-red);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-buttons {
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-container:hover .image-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: var(--primary-orange);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  left: -20px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.card-content h6 {
  margin-bottom: 0.25rem;
  color: var(--dark);
  font-weight: 600;
}

.card-content p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.watch-link {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  display: inline-block;
  transition: all 0.2s ease;
}
.watch-link:hover {
  color: #d0021b;
}
.watch-link .arrow {
  margin-left: 6px;
  transition: transform 0.2s ease;
}
.watch-link:hover .arrow {
  transform: translateX(4px);
}
img.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}



/* About Section */
.about-section {
  background: var(--light);
}

.about-content {
  padding-right: 2rem;
}

.about-description {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-highlights {
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content h5 {
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.highlight-content p {
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.cta-note i {
  color: var(--primary-green);
}

.about-visual {
  position: relative;
}

.image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.grid-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.main-image {
  grid-row: span 2;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.achievement-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 250px;
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.achievement-content h4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.achievement-content p {
  color: var(--gray);
  margin: 0;
  font-size: 0.9rem;
}

/* Why Dholera Section */
.why-dholera-section {
  background: var(--white);
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.benefit-card.featured {
  border-color: var(--primary-red);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.card-header .card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .card-header .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

.card-header h4 {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.card-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.benefit-list li {
  padding: 0.5rem 0;
  color: var(--gray);
  position: relative;
  padding-left: 1.5rem;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.card-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.highlight-text {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Projects Section */
.projects-section {
  background: #fff6ec;
}

.project-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

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

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
}

.project-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.project-badge.featured {
  background: var(--primary-red);
}

.project-badge.new-launch {
  background: var(--primary-orange);
}

.project-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.project-status.available {
  background: var(--primary-green);
}

.project-status.selling-fast {
  background: var(--primary-orange);
}

.project-status.coming-soon {
  background: var(--primary-orange);
}

.project-content {
  padding: 2rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-header h4 {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.project-rating {
  display: flex;
  gap: 0.25rem;
}

.project-rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.project-location {
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.project-features {
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(224, 64, 82, 0.1);
  color: var(--primary-red);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.project-details {
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-label {
  color: var(--gray);
  font-weight: 500;
}

.detail-value {
  font-weight: 600;
  color: var(--dark);
}

.detail-value.price {
  color: var(--primary-red);
  font-size: 1.1rem;
}

.detail-value.roi {
  color: var(--primary-green);
}

.project-progress {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.progress {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  background: var(--gradient-primary);
  height: 100%;
  transition: width 0.3s ease;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

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

.testimonial-card.featured {
  border-color: var(--primary-red);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h5 {
  margin-bottom: 0.25rem;
  color: var(--dark);
  font-weight: 600;
}

.client-info span {
  color: var(--gray);
  font-size: 0.9rem;
}

.rating {
  margin-top: 0.5rem;
}

.rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.investment-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.investment-amount {
  color: var(--primary-red);
  font-weight: 600;
}

.roi-achieved {
  color: var(--primary-green);
  font-weight: 600;
}

.trust-indicators {
  background: var(--light);
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.trust-label {
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.trust-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.trust-stars i {
  color: #ffc107;
  font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
  background: var(--light);
}

.contact-form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-header p {
  color: var(--gray);
}

.form-label {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(224, 64, 82, 0.25);
  background: var(--white);
  outline: none;
}

.form-control::placeholder {
  color: var(--gray);
  opacity: 0.8;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: var(--primary-red);
  animation: shake 0.5s ease-in-out;
}

.invalid-feedback {
  color: var(--primary-red);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.btn-submit {
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-submit:hover:not(:disabled)::before {
  left: 0;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-note i {
  color: var(--primary-green);
}

.contact-info {
  padding-left: 2rem;
}

.info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.info-card h4 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-card p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-content h6 {
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.contact-content p {
  margin: 0;
  color: var(--gray);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link.facebook {
  background: #3b5998;
}
.social-link.twitter {
  background: #1da1f2;
}
.social-link.instagram {
  background: #e4405f;
}
.social-link.linkedin {
  background: #0077b5;
}
.social-link.youtube {
  background: #ff0000;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.quick-actions .btn {
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .brand-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
}

.footer-logo .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo .brand-subtitle {
  font-size: 0.8rem;
  color: var(--primary-orange);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.widget-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-red);
}

.footer-contact .contact-item {
  margin-bottom: 1rem;
  align-items: center;
}

.footer-contact .contact-item i {
  color: var(--primary-red);
  font-size: 1rem;
  width: 20px;
  margin-right: 1rem;
}

.footer-contact .contact-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  justify-content: end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-red);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  transform: translateY(-3px);
}

/* Modal Styles */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: var(--gradient-primary);
  color: var(--white);
  border-bottom: none;
  border-radius: 15px 15px 0 0;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  filter: invert(1);
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.success-icon i {
  animation: pulse 2s infinite;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-btn,
.whatsapp-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 20px;
}

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

.whatsapp-btn {
  background-color: #12bb50;
}

.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}


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

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

  .hero-stats {
    gap: 2rem;
  }

  .hero-features {
    gap: 1rem;
  }

  .about-content,
  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .floating-card {
    position: static;
    margin-top: 2rem;
  }

  .achievement-card {
    position: static;
    margin-top: 2rem;
  }

  .image-grid {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-features, .hero-stats {display:none !important;}
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .info-card {
    padding: 2rem;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .navbar-brand .brand-logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .navbar-brand .brand-number {
    font-size: 1.5rem;
  }

  .navbar-brand .brand-text {
    font-size: 1.2rem;
  }

  .navbar-brand .brand-subtitle {
    font-size: 0.7rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    height: 600px;
  }

  .main-image {
    grid-row: span 1;
  }

  html, body {
  max-width: 100%;
  overflow-x: hidden;
}
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
}

/* Focus States for Accessibility */
.form-control:focus,
.form-select:focus,
.btn-submit:focus,
.back-to-top:focus {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .form-control,
  .form-select {
    border-width: 3px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
