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

:root {
  --primary-color: #213872;
  --secondary-color: #e04232;
  --accent-color: #fc4a1a;
  --dark-color: #071e56;
  --light-color: #f9f9f9;
  --gradient-primary: linear-gradient(120deg, #213872, #071e56);
  --gradient-secondary: linear-gradient(to right, #e04232, #fc4a1a);
  --text-color: #333;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: var(--light-color);
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}

.section-title span {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2 .highlight {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--gradient-secondary);
  border-radius: 5px;
}

.btn-custom {
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  z-index: -1;
  transition: var(--transition);
}

.btn-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(247, 182, 51, 0.3);
}

.btn-custom:hover::before {
  transform: scale(1.1);
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--light-color);
  color: var(--light-color);
}

.btn-outline::before {
  opacity: 0;
}

.btn-outline:hover {
  color: var(--dark-color);
}

.btn-outline:hover::before {
  opacity: 1;
  transform: scale(1);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-color);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader .loader {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: var(--secondary-color);
  animation: spin 1s ease-in-out infinite;
  position: relative;
  margin-bottom: 30px;
}

.preloader .loader::before,
.preloader .loader::after {
  content: '';
  position: absolute;
  border: 5px solid transparent;
}

.preloader .loader::before {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-top-color: var(--accent-color);
  animation: spin 2s linear infinite;
}

.preloader .loader-text {
  text-align: center;
  color: #fff;
  animation: fadeInUp 1s ease;
}

.preloader .loader-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--secondary-color);
  letter-spacing: 1px;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.preloader .loader-text p {
  font-size: 1rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header/Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #1b2b4d 0%, #0d1426 100%);
  position: relative;
  overflow: hidden;
}

/* Background effects */
.hero .shape {
  position: absolute;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.hero .shape-1 {
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--secondary-color) 0%, rgba(247, 182, 51, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 15s ease-in-out infinite alternate;
}

.hero .shape-2 {
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 0%, rgba(31, 66, 135, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite alternate-reverse;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20l2.83-2.83 1.41 1.41L1.41 21.41 0 22.83V20zm0 18.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM12.41 40l2.83-2.83 1.41 1.41L13.83 40h-1.42zm17.42-17.41l-1.41-1.41L30.83 20l1.41 1.41-2.41 1.18zm-10-10l-1.41-1.41L20.83 10l1.41 1.41-2.41 1.18zM32.83 40l2.83-2.83 1.41 1.41L34.24 40h-1.41zM1.41 10l2.83-2.83L5.65 8.59 2.83 11.41 1.41 10zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zM10 17.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm1.41-7.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(0deg, #101832 0%, rgba(16, 24, 50, 0) 100%);
  z-index: 0;
}

/* Navbar */
.hero .navbar {
  padding: 20px 0;
  transition: var(--transition);
}

.hero .navbar.scrolled {
  background: rgba(7, 30, 86, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

.hero .navbar .navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero .navbar .navbar-brand i {
  color: var(--secondary-color);
  margin-left: 10px;
  font-size: 2rem;
}

.hero .navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 5px;
  position: relative;
  transition: var(--transition);
}

.hero .navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.hero .navbar .nav-link:hover {
  color: #fff;
}

.hero .navbar .nav-link:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.hero .navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .navbar .navbar-toggler:focus {
  box-shadow: none;
}

.hero .navbar .btn-outline-light {
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
}

.hero .navbar .btn-outline-light:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(247, 182, 51, 0.3);
}

/* Hero content */
.hero .hero-content {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero .hero-content h1 .highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.hero .hero-content h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent-color);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.hero .hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero .hero-content .btn-primary {
  background: var(--gradient-secondary);
  border: none;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(247, 182, 51, 0.3);
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.hero .hero-content .btn-primary i {
  margin-right: 8px;
}

.hero .hero-content .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(247, 182, 51, 0.4);
  background: linear-gradient(to right, #fc4a1a, #f7b633);
}

.hero .hero-content .hero-img {
  position: relative;
  z-index: 1;
}

.hero .hero-content .hero-img img {
  width: 100%;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

.hero .hero-content .hero-img::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: radial-gradient(var(--secondary-color), transparent 70%);
  opacity: 0.3;
  filter: blur(30px);
  z-index: -1;
  border-radius: 20px;
}

.hero-features {
  margin-top: 40px;
}

.hero-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hero-features .feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  color: var(--secondary-color);
  font-size: 1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.hero-features .feature-item:hover .feature-icon {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(247, 182, 51, 0.3);
}

.hero-features .feature-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.hero .hero-content .hero-trusted {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  animation: float 6s ease-in-out infinite alternate;
  z-index: 2;
}

.hero .hero-content .hero-trusted::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  border-radius: 15px;
  z-index: -1;
}

.hero .hero-content .hero-trusted .trusted-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hero .hero-content .hero-trusted .trusted-number span {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.hero .hero-content .hero-trusted .trusted-text {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

/* Services Section */
.services {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-image: 
    linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23213872' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  z-index: 0;
}

.services .bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 182, 51, 0.05) 0%, rgba(247, 182, 51, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.services .bg-shape-1 {
  top: -300px;
  right: -300px;
}

.services .bg-shape-2 {
  bottom: -300px;
  left: -300px;
}

.services .section-title h2 {
  color: var(--dark-color);
}

.services .service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  text-align: center;
}

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

.services .service-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-secondary);
  transition: var(--transition);
  z-index: 2;
}

.services .service-card:hover::before {
  height: 10px;
}

.services .service-card:hover .icon-box {
  background: var(--gradient-secondary);
  color: #fff;
  box-shadow: 0 15px 30px rgba(247, 182, 51, 0.3);
  transform: translateY(-10px) rotateY(360deg);
}

.services .service-card:hover h3 {
  color: var(--primary-color);
}

.services .service-card .icon-box {
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--secondary-color);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.services .service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  transition: var(--transition);
  color: var(--dark-color);
}

.services .service-card p {
  color: #666;
  margin-bottom: 25px;
  transition: var(--transition);
}

.services .service-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.services .service-card .read-more::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: var(--transition);
}

.services .service-card .read-more:hover {
  color: var(--secondary-color);
}

.services .service-card .read-more:hover::after {
  width: 100%;
}

/* About Section */
.about {
  background-color: #f8f9fa;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23213872' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 1;
  z-index: 0;
}

.about .about-img {
  position: relative;
  z-index: 1;
}

.about .about-img img {
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about .about-img .experience {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
}

.about .about-img .experience h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0;
  color: var(--secondary-color);
}

.about .about-img .experience span {
  font-size: 1rem;
  font-weight: 500;
}

.about .section-title {
  text-align: right;
}

.about .section-title::after {
  right: 0;
  left: auto;
  transform: none;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.about .feature-item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
}

.about .feature-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-left: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.about .feature-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.about .feature-item p {
  color: #666;
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  background-color: #fff;
  padding: 120px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23213872' fill-opacity='0.02'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20l2.83-2.83 1.41 1.41L1.41 21.41 0 22.83V20zm0 18.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM12.41 40l2.83-2.83 1.41 1.41L13.83 40h-1.42zm17.42-17.41l-1.41-1.41L30.83 20l1.41 1.41-2.41 1.18zM2.83 28.83l2.83-2.83L7.07 27.4 4.24 30.24 2.83 28.83zM1.41 10l2.83-2.83L5.65 8.59 2.83 11.41 1.41 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  z-index: 0;
}

.contact .section-title h2 {
  color: var(--dark-color);
}

.contact .contact-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.contact .contact-box .icon {
  width: 70px;
  height: 70px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.contact .contact-box:hover .icon {
  background: var(--gradient-secondary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(247, 182, 51, 0.3);
}

.contact .contact-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  font-weight: 700;
}

.contact .contact-box p {
  color: #666;
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: #f8f9fa;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonials .testimonial-item {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  margin: 20px 15px;
  transition: var(--transition);
}

.testimonials .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonials .testimonial-item .quote {
  font-size: 5rem;
  color: var(--secondary-color);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.testimonials .testimonial-item p {
  font-style: italic;
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

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

.testimonials .client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-left: 15px;
  object-fit: cover;
  border: 3px solid var(--light-color);
}

.testimonials .client-info h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.testimonials .client-info span {
  font-size: 0.9rem;
  color: #777;
}

.testimonials .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--secondary-color);
  opacity: 1;
  width: 20px;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: linear-gradient(140deg, #1b2b4d 0%, #0d1426 100%);
  color: #fff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer .container {
  position: relative;
  z-index: 10;
}

.footer .row,
.footer h4,
.footer p {
  position: relative;
  z-index: 10;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20l2.83-2.83 1.41 1.41L1.41 21.41 0 22.83V20zm0 18.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM12.41 40l2.83-2.83 1.41 1.41L13.83 40h-1.42zm17.42-17.41l-1.41-1.41L30.83 20l1.41 1.41-2.41 1.18zm-10-10l-1.41-1.41L20.83 10l1.41 1.41-2.41 1.18zM32.83 40l2.83-2.83 1.41 1.41L34.24 40h-1.41zM1.41 10l2.83-2.83L5.65 8.59 2.83 11.41 1.41 10zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zM10 17.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm1.41-7.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-container {
  margin-bottom: 15px;
}

.footer-logo .brand-text {
  font-size: 2.2rem;
}

.footer-logo .logo-icon {
  font-size: 2rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-certification {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 15px;
  display: inline-block;
}

.footer-certification p {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-certification i {
  color: var(--secondary-color);
  margin-left: 10px;
}

.footer h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(-8px);
}

.footer-links a i {
  margin-left: 8px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover i {
  color: var(--secondary-color);
  transform: translateX(-5px);
}

.contact-links li {
  margin-bottom: 18px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-links i {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 12px;
  color: var(--secondary-color);
  transition: var(--transition);
}

.contact-links a:hover i {
  background: var(--secondary-color);
  color: #fff;
  transform: none;
}

.contact-links .availability,
.contact-links .price-info {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}

.contact-links .availability i,
.contact-links .price-info i {
  background: rgba(255, 255, 255, 0.05);
}

.social-links {
  margin: 25px 0;
  display: flex;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--secondary-color);
  color: #fff;
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.built-by {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.built-by a {
  color: var(--secondary-color);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.built-by a:hover {
  color: #fff;
  text-decoration: none;
}

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(247, 182, 51, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(247, 182, 51, 0);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero .hero-content {
    text-align: center;
    padding: 150px 0 80px;
  }
  
  .hero .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero .navbar {
    padding: 15px 0;
  }
  
  .about .about-img .experience {
    bottom: -20px;
    right: 20px;
    padding: 20px;
    width: 130px;
    height: 130px;
  }
  
  .about .about-img .experience span {
    font-size: 0.9rem;
  }
  
  .about .section-title, 
  .about h2 {
    text-align: center;
  }
  
  .about .section-title::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .about, .services, .contact, .testimonials {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero .hero-content {
    padding: 120px 0 50px;
  }
  
  .hero .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero .hero-content .hero-img {
    margin-top: 50px;
  }
  
  .hero .hero-content .hero-img::before {
    display: none;
  }
  
  .about .section-title, 
  .about h2 {
    text-align: center;
  }
  
  .about .section-title::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about .about-img {
    margin-bottom: 60px;
  }
  
  .about .about-img .experience {
    bottom: -30px;
    right: 50%;
    transform: translateX(50%);
  }
  
  .contact-box {
    margin-bottom: 30px;
  }
  
  .footer {
    padding: 70px 0 30px;
  }
  
  .footer h4 {
    margin-top: 40px;
  }
}

/* Additional Animations and Effects */

@keyframes gradientBg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Apply glass effect for modern UI */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern hover effects for cards */
.modern-card {
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
}

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

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

/* Button animation */
.btn-animated {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition);
}

.btn-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.btn-animated:hover::after {
  left: 100%;
  transition: 0.8s;
}

/* Floating elements */
.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-slow {
  animation: float 8s ease-in-out infinite;
}

.floating-fast {
  animation: float 4s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

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

/* Custom Input Styling */
.custom-input {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  color: var(--text-color);
  background-color: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: var(--transition);
}

.custom-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(247, 182, 51, 0.1);
  background-color: #fff;
}

.custom-input::placeholder {
  color: #aaa;
  opacity: 0.7;
}

/* Enhanced Testimonial Styles */
.testimonial-modern {
  position: relative;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
  margin: 30px 15px;
  z-index: 1;
}

.testimonial-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(247, 182, 51, 0.05) 0%, rgba(252, 74, 26, 0.05) 100%);
  z-index: -1;
}

.testimonial-modern .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.1;
  z-index: -1;
}

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

/* Enhanced CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(140deg, #1b2b4d 0%, #0d1426 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20l2.83-2.83 1.41 1.41L1.41 21.41 0 22.83V20zm0 18.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM12.41 40l2.83-2.83 1.41 1.41L13.83 40h-1.42zm17.42-17.41l-1.41-1.41L30.83 20l1.41 1.41-2.41 1.18zm-10-10l-1.41-1.41L20.83 10l1.41 1.41-2.41 1.18zM32.83 40l2.83-2.83 1.41 1.41L34.24 40h-1.41zM1.41 10l2.83-2.83L5.65 8.59 2.83 11.41 1.41 10zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zM10 17.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm1.41-7.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.urgent-help-section {
  background: linear-gradient(to right, #f8f9fa, #f1f1f1);
  position: relative;
  margin-bottom: 0;
  color: var(--dark-color);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.urgent-help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23213872' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  z-index: -1;
}

.urgent-help-section .cta-title {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--dark-color);
  position: relative;
}

.urgent-help-section .cta-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 4px;
}

.urgent-help-section .cta-text {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.urgent-help-section .cta-badge {
  background: #fff;
  color: var(--dark-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.urgent-help-section .cta-badge i {
  color: var(--secondary-color);
}

.urgent-help-section .cta-badge:hover {
  transform: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.urgent-help-section .cta-btn {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(224, 66, 50, 0.3);
  border: none;
}

.urgent-help-section .cta-btn:hover {
  transform: none;
  box-shadow: 0 4px 10px rgba(224, 66, 50, 0.3);
  background: #d63b2b;
}

.urgent-help-section .btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  background: transparent;
}

.urgent-help-section .btn-outline:hover {
  background: rgba(33, 56, 114, 0.05);
  border-color: var(--primary-color);
  transform: none;
  box-shadow: none;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: #fff;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  color: var(--primary-color);
}

/* Progress Indicators */
.progress-indicator {
  width: 100%;
  height: 8px;
  background-color: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
  background: var(--gradient-secondary);
  transition: width 1s ease;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

/* Alert Container */
.alert-container {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 9999;
  max-width: 350px;
}

.alert {
  margin-bottom: 15px;
  box-shadow: var(--shadow-md);
  border: none;
  border-radius: 10px;
  animation: slideFromRight 0.4s ease;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-right: 5px solid #28a745;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-right: 5px solid #dc3545;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border-right: 5px solid #ffc107;
}

.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-right: 5px solid #17a2b8;
}

/* Hero subtitle styling */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

/* Styling for the certification badge */
.certification-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  max-width: fit-content;
}

.certification-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(45deg, #003399, #0055cc);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 12px;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.certification-text p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Enhanced services section */
.service-card .read-more {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.service-card .read-more i {
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.service-card:hover .read-more {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .read-more i {
  transform: translateX(-5px);
}

/* Enhanced button animation for "כל השירותים" */
.btn-outline.btn-animated {
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline.btn-animated span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-outline.btn-animated i {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-outline.btn-animated::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: var(--secondary-color);
  z-index: 1;
  transition: all 0.4s ease;
}

.btn-outline.btn-animated:hover {
  color: var(--dark-color);
  border-color: var(--secondary-color);
}

.btn-outline.btn-animated:hover::after {
  height: 100%;
}

.btn-outline.btn-animated:hover i {
  transform: translateY(4px);
  color: var(--dark-color);
}

/* CTA badges */
.cta-badges {
  margin-bottom: 30px;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  margin: 0 5px 10px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.cta-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-badge i {
  color: var(--secondary-color);
}

/* Brand styling */
.navbar-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.logo-container {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-icon {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-right: 5px;
  margin-left: 10px;
  transition: var(--transition);
}

.navbar-brand:hover .logo-icon {
  transform: rotateY(180deg);
}

.brand-text {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand-lock {
  color: var(--secondary-color);
  position: relative;
}

.brand-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  margin-right: 40px;
  font-style: normal;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
  background: var(--secondary-color);
  color: #fff;
}

/* Phone button styling fix */
.navbar .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b2b4d;
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar .phone-link:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 66, 50, 0.3);
}

.navbar .phone-link i {
  margin-right: 8px;
  margin-left: 0;
  color: white;
}

.navbar .phone-link span {
  direction: ltr;
}

/* WhatsApp button fix */
.navbar .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.navbar .whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

/* Footer links fix */
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  z-index: 5;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 20l2.83-2.83 1.41 1.41L1.41 21.41 0 22.83V20zm0 18.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM12.41 40l2.83-2.83 1.41 1.41L13.83 40h-1.42zm17.42-17.41l-1.41-1.41L30.83 20l1.41 1.41-2.41 1.18zm-10-10l-1.41-1.41L20.83 10l1.41 1.41-2.41 1.18zM32.83 40l2.83-2.83 1.41 1.41L34.24 40h-1.41zM1.41 10l2.83-2.83L5.65 8.59 2.83 11.41 1.41 10zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zM10 17.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm20 0l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41zm1.41-7.41l2.83-2.83 1.41 1.41-2.83 2.83-1.41-1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 5;
}

.footer-links li {
  margin-bottom: 15px;
  position: relative;
}

.contact-links a,
.contact-links .availability,
.contact-links .price-info {
  position: relative;
  z-index: 5;
}

.social-links {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.social-links a {
  position: relative;
  z-index: 5;
} 