/* Global Styles */
:root {
  --primary-color: #01411c; /* Pakistan Dark Green */
  --secondary-color: #006600; /* Lighter Green */
  --accent-color: #ffffff; /* White */
  --text-color: #2d3748;
  --light-text: #e0e0e0;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --crescent-color: #ffffff;
  --star-color: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--white);
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='65' cy='50' r='35' fill='%23ffffff' /%3E%3Ccircle cx='55' cy='50' r='30' fill='%2301411C' /%3E%3Cpolygon points='65,25 68,35 78,35 70,42 73,52 65,46 57,52 60,42 52,35 62,35' fill='%23ffffff' /%3E%3C/svg%3E")
    no-repeat center center;
  opacity: 0.1;
  z-index: -1;
  filter: blur(2px);
}

/* Coming Soon Container */
.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: fadeIn 1s ease-out;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  z-index: -1;
}

/* Logo and Content */
.logo {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  color: var(--light-text);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.content {
  text-align: center;
  position: relative;
}

.content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.description {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Services Preview */
.services-preview {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service i {
  font-size: 2.2rem;
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service span {
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 400;
  letter-spacing: 1px;
}

/* Contact Preview */
.contact-preview {
  margin: 2.5rem 0;
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.chairman {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.chairman span {
  color: var(--light-text);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Contact Info */
.contact-info {
  margin: 2.5rem 0;
}

.contact-info p {
  margin: 0.8rem 0;
  color: var(--light-text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.email-link {
  color: var(--light-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.social-link {
  color: var(--light-text);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .glass-card {
    padding: 2rem;
    margin: 1rem;
  }

  .logo h1 {
    font-size: 2.8rem;
  }

  .content h2 {
    font-size: 2.2rem;
  }

  .services-preview {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .glass-card {
    padding: 1.5rem;
  }

  .logo h1 {
    font-size: 2.2rem;
  }

  .content h2 {
    font-size: 2rem;
  }

  .description {
    font-size: 1.1rem;
  }

  .chairman {
    font-size: 1.1rem;
  }

  .social-link {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Footer Text */
.footer-text {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.footer-text p {
  color: var(--light-text);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.designer-credit {
  font-size: 0.85rem !important;
  opacity: 0.8;
  margin-top: 0.5rem !important;
}

.designer-credit a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.designer-credit a:hover {
  opacity: 0.9;
  text-decoration: underline;
}
