:root {
  --primary-blue: #0a74d4;
  --dark-gray: #333333;
  --medium-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --pantone-7408: #005a9c;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  min-height: 100vh;
  color: var(--dark-gray);
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Header */
.header {
  padding: 2rem 0;
  text-align: center;
  background: rgba(10, 116, 212, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 116, 212, 0.1);
}

.logo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  height: 120px; /* Increased logo size from 80px to 120px as requested */
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

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

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.construction-section {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

/* Construction Animation */
/* Removed all gear animation styles since gears were eliminated */

/* Typography */
.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--pantone-7408));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(74, 74, 74, 0.2);
  border-radius: 3px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--pantone-7408));
  border-radius: 3px;
  animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 0%;
  }
}

/* Company Info */
.company-info {
  margin-bottom: 3rem;
}

.company-info h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.description {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.email-btn {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.email-btn:hover {
  background: var(--pantone-7408);
  border-color: var(--pantone-7408);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 116, 212, 0.3);
}

/* Footer */
.footer {
  background: rgba(51, 51, 51, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.company-details {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.company-details a {
  color: var(--primary-blue);
  text-decoration: none;
}

.company-details a:hover {
  text-decoration: underline;
}

.copyright {
  color: var(--medium-gray);
  font-size: 0.8rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 0;
  }

  .logo {
    height: 70px; /* Increased mobile logo size from 50px to 70px to maintain proportion */
  }

  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .company-info h2 {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem;
  }

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

  .company-info h2 {
    font-size: 1.5rem;
  }

  .footer {
    padding: 1rem;
  }
}
