:root {
  --primary-orange: #E6521F;
  --secondary-orange: #FB9E3A;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff3e0 50%, #ffe0b2 100%);
  min-height: 100vh;
}

.org-gradient {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.dev-gradient {
  background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-orange) 100%);
}

.glass-effect {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { box-shadow: 0 0 20px rgba(230, 82, 31, 0.3); }
  to { box-shadow: 0 0 40px rgba(251, 158, 58, 0.6); }
}

.hero-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  opacity: 0.1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.floating-shape-1 {
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: var(--secondary-orange);
  animation: float 6s ease-in-out infinite;
}

.floating-shape-2 {
  bottom: 10%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: var(--primary-orange);
  animation: float 6s ease-in-out infinite 2s;
}

.floating-shape-3 {
  top: 50%;
  right: 20%;
  width: 60px;
  height: 60px;
  background: var(--secondary-orange);
  animation: float 6s ease-in-out infinite 4s;
}

.section-title {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-orange);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(251, 158, 58, 0.1) 0%, rgba(230, 82, 31, 0.1) 100%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: transform 0.3s ease;
}

.contact-icon i {
  font-size: 2rem;
  color: white;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-details {
  margin: 20px 0;
}

.btn-custom {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 82, 31, 0.3);
  color: white;
}

.contact-form-wrapper {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.custom-input {
  border: 2px solid #e9ecef;
  border-radius: 15px;
  padding: 15px 20px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.custom-input:focus {
  border-color: var(--secondary-orange);
  box-shadow: 0 0 0 0.2rem rgba(251, 158, 58, 0.25);
  background: white;
}

.form-floating > label {
  color: #6c757d;
  font-weight: 500;
}

.form-floating > .custom-input:focus ~ label,
.form-floating > .custom-input:not(:placeholder-shown) ~ label {
  color: var(--primary-orange);
}

.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.map-placeholder {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.custom-accordion .accordion-button {
  background: white;
  border: none;
  padding: 20px 25px;
  font-weight: 600;
  color: #333;
  border-radius: 15px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  color: white;
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.custom-accordion .accordion-body {
  padding: 25px;
  background: #f8f9fa;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  color: white;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .hero-section {
    padding: 80px 0;
  }
  
  .floating-shape {
    display: none;
  }
}

.navbar-nav .nav-link:hover {
  color: #e6521f !important;
}


.nav-glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(20, 20, 40, 0.3);
}