/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #FFD700;
  --yellow-dark: #FFC107;
  --yellow-light: #FFF59D;
  --white: #FFFFFF;
  --white-dark: #F8F9FA;
  --white-darker: #E9ECEF;
  --dark: #212529;
  --dark-light: #343A40;
  --gray: #6C757D;
  --gray-light: #ADB5BD;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Color Classes */
.text-yellow {
  color: var(--yellow);
}

.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--dark);
}

/* Animation Classes */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-text.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations */
@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

/* Header Styles */
.header-top {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--yellow);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
}

.logo-primary {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.logo-accent {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--yellow);
}

.nav-link.active {
  color: var(--yellow);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  border-radius: 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* Buttons */
.btn {
  padding: 14px 30px;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  animation: pulse 1s ease;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 20px;
  font-size: 14px;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(33, 37, 41, 0.9), rgba(33, 37, 41, 0.9)), 
              url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto 50px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  padding: 25px;
  background: var(--white-dark);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 24px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-dark);
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
  z-index: 1;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--white-darker);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--dark);
  font-size: 28px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--yellow);
  transform: rotate(15deg) scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--yellow);
  gap: 12px;
}

/* Packages Section */
.packages {
  padding: 100px 0;
  background: var(--white-dark);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  transform: translateY(-20px);
  border: 2px solid var(--yellow);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.package-card.featured:hover {
  transform: translateY(-30px);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--yellow);
  color: var(--dark);
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}

.package-header {
  background: var(--dark);
  color: var(--white);
  padding: 40px 30px;
  text-align: center;
}

.package-header h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--yellow);
}

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
}

.period {
  font-size: 1rem;
  color: var(--gray-light);
}

.package-body {
  padding: 40px 30px;
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--white-darker);
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li i {
  color: var(--yellow);
}

.features-list li:last-child {
  border-bottom: none;
}

.package-footer {
  padding: 0 30px 40px;
  text-align: center;
}

.package-footer .btn {
  width: 100%;
  justify-content: center;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.testimonial-content {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-content i {
  color: var(--yellow);
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.testimonial-content p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
}

.author-info h4 {
  margin-bottom: 5px;
  color: var(--dark);
}

.author-info p {
  color: var(--gray);
  font-size: 14px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white-dark);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--white-darker);
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  background: var(--white);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--white-dark);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--white-darker);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--yellow);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--dark);
  font-size: 24px;
}

.info-card h4 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 1.1rem;
}

.info-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-info .social-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-info .social-links a {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid var(--white-darker);
}

.contact-info .social-links a:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo .logo-text {
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-contact p {
  color: var(--gray-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
  color: var(--gray-light);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--yellow);
  padding-left: 5px;
}

.footer-newsletter p {
  color: var(--gray-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  background: transparent;
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: var(--gray-light);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--dark);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--yellow-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray);
  color: var(--gray-light);
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  animation: none;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--yellow-dark);
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
      font-size: 3rem;
  }
  
  .about-content {
      gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero-title {
      font-size: 2.5rem;
  }
  
  .about-content {
      grid-template-columns: 1fr;
      gap: 50px;
  }
  
  .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .package-card.featured {
      transform: none;
  }
  
  .package-card.featured:hover {
      transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .header-top-content {
      flex-direction: column;
      gap: 10px;
      text-align: center;
  }
  
  .contact-info {
      flex-direction: column;
      gap: 10px;
  }
  
  .hamburger {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 100px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 100px);
      background: var(--white);
      flex-direction: column;
      justify-content: flex-start;
      padding: 40px 20px;
      gap: 25px;
      transition: var(--transition);
      box-shadow: var(--shadow-dark);
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -6px);
  }
  
  .hero {
      padding: 80px 0;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .hero-stats {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
      grid-template-columns: 1fr;
  }
  
  .services-grid,
  .packages-grid,
  .testimonials-grid {
      grid-template-columns: 1fr;
  }
  
  .contact-info {
      grid-template-columns: 1fr;
  }
  
  .package-badge {
      right: -25px;
      padding: 6px 35px;
      font-size: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
      font-size: 1.8rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .hero-stats {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .stat-item {
      padding: 20px;
  }
  
  .stat-number {
      font-size: 2.5rem;
  }
  
  .service-card,
  .contact-form,
  .info-card {
      padding: 30px 20px;
  }
  
  .whatsapp-float {
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      font-size: 26px;
  }
  
  .back-to-top {
      bottom: 80px;
      right: 20px;
      width: 45px;
      height: 45px;
      font-size: 18px;
  }
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1001;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  width: 0%;
  transition: width 0.3s ease;
}