:root {
  --primary: #FF6C00;
  --primary-light: #FF8C33;
  --primary-dark: #E05A00;
  --white: #FFFFFF;
  --light: #F9F9F9;
  --gray: #777777;
  --dark: #222222;
  --scrollbar-width: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: padding-right 0.3s ease;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

/* Navbar Styles */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1000;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
  padding: 1rem 0;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0.8rem;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown > a .fa-chevron-down {
  font-size: 0.7em;
  transition: transform 0.3s;
}

.dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1001;
  border-radius: 8px;
  top: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-content a {
  padding: 0.8rem 1.2rem;
  display: block;
  color: var(--dark);
  transition: all 0.2s;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  background-color: rgba(255, 108, 0, 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 1.5rem;
}

.nav-contact {
  background-color: var(--primary);
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 6px;
  margin-left: 1rem;
  transition: all 0.3s;
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 108, 0, 0.25);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  position: relative;
}

.modal-header h3 {
  font-size: 1.5rem;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.close-modal:hover {
  transform: rotate(90deg);
}

.modal-body {
  display: flex;
  flex-direction: column;
}

.modal-image {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Imagens dos serviços no modal */
.modal-image.rede-top {
  background-image: url('../IMG/Rede_Top.png');
}

.modal-image.dedicado {
  background-image: url('../IMG/Linke_dedicado.png');
}

.modal-text {
  flex: 1;
  padding: 2rem;
}

.modal-text p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.contact-modal .modal-content {
  max-width: 500px;
}

.contact-modal .modal-header {
  text-align: center;
}

.contact-options {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.contact-option {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
}

.contact-option:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 108, 0, 0.1);
  transform: translateY(-3px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 108, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.3rem;
}

.contact-info h4 {
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.contact-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.benefits-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.benefits-modal-content {
  background-color: var(--white);
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.3);
  animation: modalFadeIn 0.3s;
}

.benefits-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--primary);
  color: var(--white);
}

.benefits-modal-title {
  font-size: 1.5rem;
  margin: 0;
}

.close-benefits-modal {
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.close-benefits-modal:hover {
  transform: rotate(90deg);
}

.benefits-modal-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.benefit-modal-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 8px;
  background-color: var(--light);
  transition: all 0.3s;
}

.benefit-modal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-icon-container {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 108, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-info {
  flex: 1;
}

.benefit-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.benefit-description {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.4;
}

.benefits-modal-body::-webkit-scrollbar {
  width: 6px;
}

.benefits-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 108, 0, 0.1);
  border-radius: 10px;
}

.benefits-modal-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

/* Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: rgba(255, 108, 0, 0.15);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 80vh;
  max-height: 800px;
  overflow: hidden;
  margin-top: 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 30px;
}

.carousel-control.next {
  right: 30px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.2);
}

/* Features Section */
.features {
  padding: 6rem 5%;
  background-color: var(--light);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background-color: rgba(255, 108, 0, 0.1);
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.feature-card h3 {
  margin-bottom: 1.2rem;
  color: var(--dark);
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* About Section */
.about-section {
  padding: 6rem 5%;
  background-color: var(--white);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 2rem;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission, .vision {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.mission:hover, .vision:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission h3, .vision h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mission p, .vision p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Plans Section */
.plans {
  padding: 3rem 5%;
  background-color: var(--white);
  overflow: hidden;
}

.plans-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.plans-container {
  width: calc(280px * 3 + 40px * 2);
  overflow: hidden;
}

.plans-carousel {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
  padding: 10px 0;
}

.plan-slide {
  flex: 0 0 280px;
  height: 480px;
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.plan-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.plan-slide:hover {
  transform: scale(1.02);
}

.plan-slide:hover img {
  transform: scale(1.03);
}

.plans-arrow {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.plans-arrow:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.plans-arrow:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Apps Section */
.apps-section {
  padding: clamp(3rem, 5vw, 5rem) 5%;
  background-color: var(--light);
  position: relative;
}

.apps-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.apps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  width: 100%;
}

.app-card {
  flex: 1 1 clamp(220px, 30vw, 320px);
  background: var(--white);
  border-radius: 15px;
  padding: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  border: 1px solid rgba(255, 108, 0, 0.15);
  max-width: 320px;
  min-width: 220px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.app-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.app-card:hover::before {
  transform: scaleX(1);
}

.app-card:focus {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.app-card:active {
  transform: translateY(-5px) scale(0.98);
}

.app-logo-container {
  width: clamp(90px, 12vw, 120px);
  height: clamp(90px, 12vw, 120px);
  margin: 0 auto clamp(1rem, 1.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 108, 0, 0.1);
  border-radius: 25px;
  padding: 0;
  border: 2px dashed rgba(255, 108, 0, 0.2);
  transition: all 0.3s ease;
}

.app-card:hover .app-logo-container {
  background: rgba(255, 108, 0, 0.15);
  transform: scale(1.05);
}

.app-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12%;
  box-sizing: border-box;
}

.app-info h3 {
  color: var(--dark);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  margin-bottom: clamp(0.5rem, 0.8vw, 0.8rem);
  font-weight: 600;
  transition: color 0.2s ease;
}

.app-card:hover .app-info h3 {
  color: var(--primary);
}

.app-info p {
  color: var(--gray);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  position: relative;
  padding: 6rem 5%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.55) 100%), url('../IMG/Banner_Clube_2.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.benefits-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.benefits-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.benefits-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.benefit-card {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 108, 0, 0.2);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 600;
}

.benefit-card p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.btn-benefits-section {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 3rem;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}

.btn-benefits-section:hover {
  background-color: transparent;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #111;
  color: #eee;
  padding: 4rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.footer-logo-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-right: 1rem;
}

.footer-about {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 108, 0, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 108, 0, 0.3);
}

.footer-social a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 108, 0, 0.2);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-contact-icon {
  background-color: rgba(255, 108, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-title {
  font-weight: 500;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.footer-contact-text {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-copyright {
  color: #777;
  font-size: 0.85rem;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,108,0,0.03) 0%, rgba(255,108,0,0.01) 100%);
  z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero-carousel {
    height: 70vh;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 0.8rem 5%;
  }
  
  .features {
    padding: 4rem 5%;
  }
  
  .plans {
    padding: 4rem 5%;
  }

  .about-content {
    flex-direction: column;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 5%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 0;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .nav-links a::after {
    bottom: 0.5rem;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    opacity: 1;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }
  
  .dropdown:hover .dropdown-content {
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
  
  .dropdown > a {
    justify-content: space-between;
  }
  
  .nav-contact {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-carousel {
    height: 60vh;
    max-height: 600px;
  }
  
  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }

  .about-section {
    padding: 4rem 5%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
  }

  body {
    font-size: 15px;
    line-height: 1.5;
  }
  
  h1, h2, h3 {
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .hero-carousel {
    height: 50vh;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-body {
    flex-direction: column;
  }
  
  .modal-image {
    min-height: 200px;
  }
  
  .btn-benefits-section {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .hero-carousel {
    height: 45vh;
  }
  
  .carousel-control {
    width: 35px;
    height: 35px;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2.5rem;
  }
  
  .contact-option {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}