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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* Header */
header {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


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

.logo-img {
  height: 85px;
  width: auto;
  max-width: 230px;
  transition: transform 0.3s ease;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #f1f5f9;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger span:last-child {
  margin-bottom: 0;
}

/* Hamburger Animation */
.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(6px, -6px);
}

/* Custom Flag Translation Widget */
.translate-widget-flag {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.current-flag {
  width: 50px;
  height: 50px;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.current-flag:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(59, 130, 246, 0.4);
}

.language-options {
  position: absolute;
  bottom: 60px;
  right: 0;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 120px;
}

.translate-widget-flag:hover .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 1.2rem;
  color: #f1f5f9;
}

.lang-option span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.5px;
}

.lang-option:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

.lang-option.active {
  background-color: rgba(59, 130, 246, 0.2);
}

/* Hide Google Translate elements but keep them functional */
.hidden-translate {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Style the Google Translate gadget */
.goog-te-gadget {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
}

/* Hide "Powered by Google Translate" text */
.goog-te-gadget .goog-te-gadget-simple .goog-te-menu-value span:first-child {
  display: none;
}

.goog-te-gadget .goog-te-gadget-simple .goog-te-menu-value:before {
  content: '🌐 ';
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://imagedelivery.net/ECo0ACj6fs2dLVVO3-qhdw/8816bbad-871e-4707-a0cc-973e4ea10000/public');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(3px);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(51, 65, 85, 0.7) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  color: #cbd5e1;
}

.btn-primary {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(248, 113, 113, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 113, 113, 0.4);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: #0f172a;
}

.about h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #f1f5f9;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lead {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: #1e293b;
}

.services h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #f1f5f9;
}

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

.service-card {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.2);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.4);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.service-card p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #2563eb;
}

/* Why Choose Section */
.why-choose {
  padding: 6rem 0;
  background-color: #0f172a;
}

.why-choose h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #f1f5f9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgb(254, 133, 117);
}

.feature p {
  color: #cbd5e1;
  line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background-color: #1e293b;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #f1f5f9;
}

.portfolio-intro {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgb(254, 133, 117);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #0f172a;
}

.testimonials h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #f1f5f9;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  font-size: 1.1rem;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial cite {
  color: rgb(254, 133, 117);
  font-weight: 600;
  font-style: normal;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, rgba(254, 133, 117, 0.1) 100%);
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(254, 133, 117, 0.15) 0%, transparent 60%);
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

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

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: #1e293b;
}

.contact h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #f1f5f9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-vcard {
  background-color: rgb(15, 23, 42);
  color: white;
}

.btn-vcard:hover {
  background-color: rgb(12, 18, 33);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}

.whatsapp-icon, .vcard-icon {
  font-size: 1.3rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid #475569;
  border-radius: 8px;
  background-color: #334155;
  color: #f1f5f9;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

/* Footer */
footer {
  background-color: #0f172a;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #cbd5e1;
  margin-top: 1rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  color: #f1f5f9;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #3b82f6;
}

.footer-contact p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .service-grid,
  .features-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    min-height: auto;
    padding: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger {
    display: flex;
  }
  
  /* Hide navigation by default on mobile */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
  }
  
  /* Show navigation when active */
  .nav.active {
    right: 0;
  }
  
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem 0;
  }
  
  .nav li {
    width: 100%;
  }
  
  .nav a {
    display: block;
    padding: 1rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav a:hover {
    background-color: rgba(59, 130, 246, 0.1);
    padding-left: 2.5rem;
  }
  
  header .container {
    justify-content: space-between;
    align-items: center;
  }
  
  /* Adjust flag widget for mobile */
  .translate-widget-flag {
    bottom: 15px;
    right: 15px;
  }
  
  .current-flag {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .language-options {
    bottom: 55px;
    min-width: 100px;
  }
  
  .lang-option {
    padding: 6px 10px;
    font-size: 1.1rem;
  }
  
  .portfolio-stats {
    grid-template-columns: 1fr;
  }
  
  .about,
  .services,
  .why-choose,
  .portfolio,
  .testimonials,
  .cta {
    padding: 4rem 0;
  }
  
  .container {
    padding: 0 15px;
  }
}
