/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
}

.animate-bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
  opacity: 0;
}

/* Header */
.header {
  background: #00B0B7;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-image {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.1) scaleY();
}

.logo-image-small {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image-small:hover {
  transform: scale(1.05);
}

/*.logo-circle {
  width: 40px;
  height: 40px;
  background: #00b0b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1) rotate(12deg);
}

.logo-circle span {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-circle-small {
  width: 30px;
  height: 30px;
  background: #00b0b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle-small span {
  color: white;
  font-weight: bold;
  font-size: 1rem;
}*/

.logo-text {
  margin-left: 12px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
}

.logo-text:hover {
  color: #00b0b7;
}

.logo-text-small {
  margin-left: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.logo-accent {
  color: #00b0b7;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  transform: scale(1.05);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #ffb400;
  color: #000;
}

.btn-primary:hover {
  background: #e6a200;
}

.btn-secondary {
  background: #00b0b7;
  color: white;
}

.btn-secondary:hover {
  background: #008a94;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: right;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(0, 0, 0, 0.1);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

.mobile-nav {
  padding: 2rem 1.5rem;
  flex: 1;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #00b0b7;
  transform: translateX(8px);
}

.mobile-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #00b0b7;
  transition: width 0.3s ease;
}

.mobile-nav-link:hover::after {
  width: 100%;
}

.mobile-cta {
  padding: 1.5rem;
}

.mobile-contact {
  padding: 1.5rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.contact-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #00b0b7;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #008a94;
}

.contact-link i {
  transition: transform 0.3s ease;
}

.contact-link:hover i {
  transform: scale(1.1);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #f0f0f0;
  color: #666;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-icon.tiktok:hover {
  background: #000;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 176, 183, 0.8) 0%, rgba(0, 176, 183, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 80px;
  width: 100%;
}

.hero-text {
  max-width: 600px;
  color: white;
  padding-left: 2rem;
  text-align: left;
}

.hero-subtitle {
  color: #ffb400;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 0.5rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  padding-left: 0.5rem;
}

.hero-title-highlight {
  display: block;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-title-main {
  display: block;
  color: white;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-width: 180px;
  justify-content: center;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
  color: #fff;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #162245;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #000 !important;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-text {
  margin-bottom: 3rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
}

.guarantee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.guarantee-card {
  background: #1a1b4b;
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.5s ease;
}

.guarantee-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guarantee-card.card-teal {
  background: #00b0b7;
}

.guarantee-card.card-purple {
  background: #6366f1;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

.guarantee-card:hover .card-icon {
  transform: rotate(12deg);
}

.guarantee-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.guarantee-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #00b0b7;
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: rotate(12deg);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: bold;
}

.cta-section {
  text-align: center;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.cta-section:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #162245;
  font-weight: bold;
}

.cta-section p {
  color: #000;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background: #f8f9fa;
}

.industries-header {
  text-align: center;
  margin-bottom: 4rem;
}

.industries-header h2 {
  color: #162245;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.industry-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-gradient-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00b0b7, #ffb400);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.industry-card:hover .industry-gradient-bar {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00b0b7, #008a94);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-size: 2rem;
  color: white;
}

.industry-card:hover .industry-icon {
  transform: rotate(12deg) scale(1.1);
  background: linear-gradient(135deg, #ffb400, #e6a200);
}

.industry-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.industry-card:hover h3 {
  color: #00b0b7;
}

.industry-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  margin-bottom: 1.5rem;
}

.industry-card:hover p {
  color: #555;
}

.learn-more {
  display: flex;
  align-items: center;
  color: #00b0b7;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.learn-more span {
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.learn-more-icon {
  width: 24px;
  height: 24px;
  border: 2px solid #00b0b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.industry-card:hover .learn-more-icon {
  transform: translateX(4px);
}

.industries-cta {
  text-align: center;
}

.industries-cta-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.industries-cta-content:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industries-cta h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.industries-cta p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
  color: #fff;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  color: #162245;
}

.services-header h2 {
  color: #162245;
}

.services-arrow {
  width: 48px;
  height: 48px;
  background: #00b0b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-arrow:hover {
  transform: scale(1.1) rotate(90deg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-card-large,
.service-card-medium {
  background: #000;
  color: white;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.service-card-large:hover,
.service-card-medium:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-large {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card-large:hover .service-icon,
.service-card-medium:hover .service-icon {
  transform: rotate(12deg) scale(1.1);
}

.service-card-medium .service-icon {
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-medium h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-card-medium p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Mobile App Section */
.mobile-app {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
  color: #fff;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mobile-mockup {
  max-width: 300px;
  margin: 0 auto 3rem;
  transition: transform 0.5s ease;
}

.mobile-mockup:hover {
  transform: scale(1.05) rotate(2deg);
}

.mobile-mockup img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mobile-app .section-title {
  color: #162245;
  font-weight: bold;
}

.mobile-app .section-subtitle {
  color: #000;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #00b0b7;
  color: white;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: white;
  color: #333;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #00b0b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
  transform: rotate(12deg);
}

.contact-info-card h3 {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-info-card a,
.contact-info-card span {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #00b0b7;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.contact-form:hover {
  transform: scale(1.02);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00b0b7;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(0, 176, 183, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-section h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.office-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.office-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.office-detail i {
  color: #ffb400;
  font-size: 1.5rem;
}

.office-detail a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.office-detail a:hover {
  color: #ffb400;
}

.contact-info-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background: #fad100;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00b0b7;
  transform: translateX(8px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: #00b0b7;
}

.footer-contact-item i {
  color: #00b0b7;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.footer-contact-item:hover i {
  transform: scale(1.1);
}

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-social .social-icon {
  background: #00b0b7;
  color: white;
}

.footer-social .social-icon:hover {
  background: #008a94;
}

.footer-bottom {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #00b0b7;
  text-decoration: none;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .guarantee-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .header-content {
    padding: 0.5rem 0;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .guarantee-cards,
  .service-highlights {
    grid-template-columns: 1fr;
  }

  .service-card-large {
    flex-direction: column;
    text-align: center;
  }

  .service-card-large .service-icon {
    margin-top: 1rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Fix for mobile menu */
@media screen and (max-width: 768px) {
  .mobile-menu.active {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu-content {
    width: 100%;
    max-width: 320px;
  }
}

/* Improve touch targets on mobile */
@media screen and (max-width: 768px) {
  .nav-link,
  .mobile-nav-link,
  .btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Adjust spacing for mobile */
@media screen and (max-width: 768px) {
  .about,
  .services,
  .mobile-app,
  .contact {
    padding: 40px 0;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Parallax Effect */
.parallax-section {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
}

/* ————— Botón flotante de WhatsApp ————— */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp .whatsapp-btn {
  background-color: #25D366;      /* verde WhatsApp */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.floating-whatsapp .whatsapp-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp .whatsapp-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #FF3B30; /* rojo de notificación */
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.blog-post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-5px);
}

.blog-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 16px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}

.blog-excerpt {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.btn-read-more {
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
}

.btn-read-more:hover {
  text-decoration: underline;
}
