@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap");

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

@font-face {
  font-family: "Europa Grotesk Bold";
  src: url("fonts/europa-grotesk-sh-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Europa Grotesk Bold", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
}

p {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

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

/* Header Styles */
.header {
  background-color: #000000;
  border-bottom: 1px solid #333333;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-right: auto;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: #888888;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-circle {
  width: 400px;
  height: 400px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  animation: pulse 3s ease-in-out infinite;
  position: relative;
}

.hero-circle::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid #666666;
  border-radius: 50%;
}

.circle-content {
  text-align: center;
  z-index: 1;
}

.circle-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.circle-content p {
  font-size: 1.2rem;
  color: #cccccc;
}

.hero-text {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Client Logos Section */
.client-logos {
  padding: 4rem 0;
  background-color: #000000;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s;
  min-width: 150px;
  flex: 0 0 auto;
}

.logo-item:hover {
  opacity: 1;
}

.client-logo {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.logo-item:hover .client-logo {
  filter: grayscale(0%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-secondary {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: #0a0a0a;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.feature-card {
  background-color: #000000;
  padding: 2.5rem;
  border: 1px solid #333333;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #cccccc;
  line-height: 1.8;
}

/* Our Work Section */
.our-work {
  padding: 5rem 0;
  background-color: #000000;
}

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

.work-item {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.work-item:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
}

.work-media {
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.work-video {
  width: 100%;
  max-width: 315px;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  margin: 0 auto;
}

.work-info {
  padding: 2rem;
}

.work-client {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.work-description {
  color: #cccccc;
  line-height: 1.8;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: #000000;
}

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

.benefit-item {
  padding: 2rem;
  border: 1px solid #333333;
  border-radius: 8px;
  transition: all 0.3s;
}

.benefit-item:hover {
  border-color: #ffffff;
  background-color: #0a0a0a;
}

.benefit-number {
  font-size: 3rem;
  font-weight: bold;
  color: #333333;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.benefit-item p {
  color: #cccccc;
  line-height: 1.8;
}

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

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

.testimonial-card {
  background-color: #000000;
  padding: 2.5rem;
  border: 1px solid #333333;
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
}

.testimonial-rating {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #cccccc;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #888888;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333333;
}

/* Page Hero */
.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  background-color: #0a0a0a;
  border-bottom: 1px solid #333333;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.3rem;
  color: #cccccc;
}

/* Services Page */
.services-section {
  padding: 3rem 0 5rem;
}

.services-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-category {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 2.5rem;
}

.service-category h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-types {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.75rem;
}

.service-types li {
  color: #cccccc;
  line-height: 1.8;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

/* About Page */
.about-content {
  padding: 5rem 0;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.mission-card {
  background-color: #0a0a0a;
  padding: 3rem;
  border: 1px solid #333333;
  border-radius: 8px;
}

.mission-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-card p {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1.1rem;
}

.values-section {
  margin-bottom: 5rem;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.value-item {
  padding: 2rem;
  border: 1px solid #333333;
  border-radius: 8px;
  text-align: center;
}

.value-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-item p {
  color: #cccccc;
  line-height: 1.8;
}

/* Location Section */
.location-section {
  background-color: #0a0a0a;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #333333;
}

.location-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.location-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.location-details p {
  color: #cccccc;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.location-map {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333333;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  background-color: #1a1a1a;
  border: 2px dashed #333333;
  padding: 4rem 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.map-placeholder p {
  font-size: 1.5rem;
  color: #666666;
}

/* Pricing Section */
.pricing-section {
  padding: 3rem 0 5rem;
}

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

.pricing-card {
  background-color: #0a0a0a;
  border: 2px solid #333333;
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
}

.pricing-card.featured {
  border-color: #ffffff;
  background-color: #000000;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #000000;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  margin: 1rem 0;
}

.price-period {
  color: #888888;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.8rem 0;
  color: #cccccc;
  border-bottom: 1px solid #222222;
}

.pricing-features li:before {
  content: "✓ ";
  color: #ffffff;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 3rem 0 5rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  background-color: #0a0a0a;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #333333;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #cccccc;
  line-height: 1.8;
}

/* Contact Link Styling */
.contact-item a,
.location-details a,
.map-placeholder a,
.footer-links a[href^="tel:"],
.footer-links a[href^="mailto:"],
.footer-links a[href*="maps.app.goo.gl"] {
  color: inherit;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.contact-item a:hover,
.location-details a:hover,
.map-placeholder a:hover,
.footer-links a[href^="tel:"]:hover,
.footer-links a[href^="mailto:"]:hover,
.footer-links a[href*="maps.app.goo.gl"]:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #0a0a0a;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid #333333;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  background-color: #000000;
  border: 1px solid #333333;
  border-radius: 4px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
}

.form-group textarea {
  resize: vertical;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #0a3d0a;
  border: 1px solid #1a5d1a;
  color: #7dff7d;
}

.form-message.error {
  display: block;
  background-color: #3d0a0a;
  border: 1px solid #5d1a1a;
  color: #ff7d7d;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  border-top: 1px solid #333333;
  padding: 3rem 0 1rem;
}

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

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column p {
  color: #cccccc;
  line-height: 1.8;
}

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

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    padding: 1rem;
    border-top: 1px solid #333333;
  }

  .hero-circle {
    width: 300px;
    height: 300px;
  }

  .hero-circle::before {
    width: 250px;
    height: 250px;
  }

  .circle-content h2 {
    font-size: 1.8rem;
  }

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

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

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

  .page-hero h1 {
    font-size: 2rem;
  }

  .contact-wrapper,
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .benefits-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .logos-grid {
    gap: 2rem;
  }

  .logo-item {
    min-width: 120px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-circle {
    width: 250px;
    height: 250px;
  }

  .hero-circle::before {
    width: 200px;
    height: 200px;
  }

  .circle-content h2 {
    font-size: 1.5rem;
  }

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

  .container {
    padding: 0 15px;
  }
}
