/* ===== MODERN ENHANCEMENTS FOR AQUILA360 ===== */

/* Root Variables for Modern Design System */
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-gradient: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  --accent-color: #667eea;
  --accent-secondary: #1fcfb3;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  overflow-x: hidden;
}

/* Enhanced Navigation */
header .navbar-nav .nav-item .nav-link.btn-cta {
  background: var(--primary-gradient);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  margin-left: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

header .navbar-nav .nav-item .nav-link.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

header.sticky {
  background: rgba(45, 70, 91, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ===== HERO SECTION ENHANCEMENTS ===== */
.hero-contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e293b 100%);
  padding: 120px 0 80px;
}

.badge-highlight {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-content h1 {
  color: white;
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
}

.ai-gradient {
  background: linear-gradient(135deg, #667eea 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-cta-group .btn {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-cta-group .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.hero-cta-group .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.hero-cta-group .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.hero-cta-group .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 14px;
}

.trust-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card.card-1 {
  top: 50px;
  left: 30px;
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 100px;
  right: 150px;
  animation: float 7s ease-in-out infinite 1s;
}

.floating-card.card-3 {
  bottom: 100px;
  left: 60px;
  animation: float 8s ease-in-out infinite 2s;
}

.floating-card .card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.floating-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: white;
}

.floating-card p {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stats-badge {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-gradient);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.hero-stats-badge h3 {
  font-size: 48px;
  color: white;
  margin: 0;
  font-weight: 900;
}

.hero-stats-badge p {
  font-size: 14px;
  color: white;
  margin: 0;
  opacity: 0.9;
}

/* Background Elements */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.gradient-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #667eea 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.gradient-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #764ba2 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 5s;
}

.gradient-orb.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

.hero-contact .container {
  position: relative;
  z-index: 1;
}

/* ===== FLOATING ODOO PARTNER BADGE (HERO SECTION) ===== */
.floating-odoo-badge {
  position: absolute;
  top: -30px;
  right: -40px;
  width: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 20px 60px rgba(113, 75, 103, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.1);
  animation: floatingBadge 6s ease-in-out infinite;
  z-index: 10;
  overflow: hidden;
  border: 3px solid #714b67;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-odoo-badge:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 30px 80px rgba(113, 75, 103, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.15);
  animation-play-state: paused;
}

@keyframes floatingBadge {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-2deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.badge-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: linear-gradient(135deg, #714b67 0%, #5a3952 100%);
  color: white;
  padding: 6px 45px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(113, 75, 103, 0.4);
  z-index: 1;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.odoo-hero-logo {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(113, 75, 103, 0.2));
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-size: 18px;
  font-weight: 800;
  color: #714b67;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-subtitle {
  font-size: 13px;
  color: #8f8f8f;
  font-weight: 600;
  line-height: 1.3;
}

.badge-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: shine 8s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive adjustments for floating badge */
@media (max-width: 1199px) {
  .floating-odoo-badge {
    right: -20px;
    top: -20px;
    width: 240px;
    padding: 20px;
  }

  .odoo-hero-logo {
    width: 70px;
  }

  .badge-title {
    font-size: 16px;
  }

  .badge-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .floating-odoo-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 30px auto 0;
    width: 280px;
  }
}

@media (max-width: 575px) {
  .floating-odoo-badge {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== SUCCESS STORIES SECTION ===== */
.success-stories {
  background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
  padding: 100px 0;
}

.success-achievements {
  margin-top: 40px;
}

.achievement-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.achievement-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.achievement-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.achievement-item h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.achievement-item p {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

/* ===== SERVICES SECTION ENHANCEMENTS ===== */
.card-expertise.modern {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

.card-expertise.modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.card-expertise .icon-wrapper {
  margin-bottom: 24px;
}

.card-expertise h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.service-desc {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
}

.card-expertise ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 15px;
}

.card-expertise ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
}

/* Featured Service Styling */
.card-expertise.modern.featured-service {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05) 0%,
    rgba(118, 75, 162, 0.05) 100%
  );
  border: 2px solid #667eea;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.card-expertise.modern.featured-service:hover {
  border-color: #764ba2;
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.35);
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.card-expertise.modern.featured-service h4 {
  color: #667eea;
  font-size: 24px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 0;
  color: white;
}

.contact-content .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-content h2 {
  color: white;
  margin-bottom: 20px;
}

.contact-methods {
  margin-top: 40px;
}

.contact-method {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

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

.method-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-method a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  transition: var(--transition);
}

.contact-method a:hover {
  color: white;
  padding-left: 5px;
}

.contact-method p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 16px;
}

/* Social Connect */
.social-connect {
  margin-top: 40px;
}

.social-connect h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: white;
  color: #667eea;
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modern-contact-form h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 28px;
}

.modern-contact-form > p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 16px;
}

.modern-contact-form label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.modern-contact-form .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: var(--transition);
}

.modern-contact-form .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-contact-form .btn-block {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  font-size: 16px;
}

/* Thank You Message Styles */
.thank-you-message {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.thank-you-message .success-icon {
  margin-bottom: 24px;
}

.thank-you-message .success-icon svg {
  stroke: #10b981;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
  animation: scaleIn 0.5s ease-out;
}

.thank-you-message h3 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.thank-you-message p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-send-another {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-send-another:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: white;
  text-decoration: none;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* ===== FOOTER ENHANCEMENTS ===== */
footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
}

.footer-top {
  padding: 80px 0 40px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer h5 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px;
}

.footer-link li {
  margin-bottom: 12px;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-link a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: #667eea;
  width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: white;
}

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

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

.footer-social a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  border-color: transparent;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

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

.animate-fade-in {
  animation: fadeInDown 0.8s ease-out;
}

.animate-slide-up {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.animate-slide-up-delay {
  animation: fadeInUp 1s ease-out 0.4s both;
}

.animate-slide-up-delay-2 {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-visual {
    height: 400px;
    margin-top: 50px;
  }

  .floating-card {
    padding: 20px;
  }

  .floating-card h4 {
    font-size: 16px;
  }

  .hero-stats-badge {
    display: none;
  }

  .contact-form-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
  }

  .floating-card {
    position: relative;
    margin-bottom: 20px;
  }

  .floating-card.card-1,
  .floating-card.card-2,
  .floating-card.card-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-visual {
    height: auto;
  }

  .footer-legal {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

/* Section Labels */
.section-label {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  color: #667eea;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Enhanced Section Descriptions */
.section-description {
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Success Date */
.success-date {
  color: #667eea;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.success-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}
/* ===== ODOO PARTNERSHIP SECTION ===== */
.odoo-partnership {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
  overflow: hidden;
}

.odoo-partnership::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.odoo-partnership::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.odoo-partnership .container {
  position: relative;
  z-index: 1;
}

/* Official Odoo Partner Badge */
.odoo-partner-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 16px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(113, 75, 103, 0.15);
  margin-bottom: 24px;
  width: fit-content;
  border: 2px solid #714b67;
}

.odoo-official-logo {
  max-width: 120px;
  height: auto;
  display: block;
}

.partner-badge-text {
  font-size: 18px;
  font-weight: 700;
  color: #714b67;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partnership-label {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.15) 0%,
    rgba(16, 185, 129, 0.15) 100%
  );
  color: #7c3aed;
  border: 2px solid #7c3aed;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
  }
}

.partnership-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.2;
}

.odoo-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.partnership-lead {
  font-size: 20px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 40px;
  font-weight: 500;
}

.partnership-lead a {
  color: #714b67;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #714b67;
  transition: all 0.3s ease;
}

.partnership-lead a:hover {
  color: #7c3aed;
  border-bottom-color: #7c3aed;
  background: rgba(124, 58, 237, 0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

.odoo-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.highlight-icon {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.highlight-item h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 15px;
  color: #718096;
  margin: 0;
  line-height: 1.6;
}

.odoo-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.odoo-service-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.odoo-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.2);
  border-color: #7c3aed;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.odoo-service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.odoo-service-card p {
  font-size: 15px;
  color: #718096;
  margin: 0;
  line-height: 1.6;
}

.odoo-stats-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  padding: 50px 40px;
  border-radius: 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
  position: relative;
  overflow: hidden;
}

.odoo-stats-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Odoo Section */
@media (max-width: 991px) {
  .partnership-content h2 {
    font-size: 38px;
  }

  .odoo-services-grid {
    grid-template-columns: 1fr;
  }

  .odoo-stats-banner {
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 30px;
  }

  .stat-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 767px) {
  .partnership-content h2 {
    font-size: 32px;
  }

  .partnership-lead {
    font-size: 18px;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon {
    margin: 0 auto;
  }

  .odoo-stats-banner {
    flex-direction: column;
  }

  .stat-item {
    flex: 1 1 100%;
  }

  .stat-item h3 {
    font-size: 36px;
  }
}
