/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #eee;
}

body {
  background-color: #121212;
  line-height: 1.6;
  min-height: 100vh;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: #111;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Logo */
.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

nav a {
  color: #ffb400;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
  border-bottom: 2px solid #ffb400;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icons a {
  color: #ffb400;
  font-size: 2.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  min-height: 500px;
  padding: 8rem 2rem;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.btn-primary {
  background-color: #ffb400;
  color: #111;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 
    0 0 8px 2px rgba(255, 180, 0, 0.9),
    0 6px 12px rgba(255, 180, 0, 0.6);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;

}

.btn-primary:hover {
  background-color: #ffaa00;
  color: #fff;
  box-shadow: 
    0 0 12px 3px rgba(255, 180, 0, 1),
    0 8px 16px rgba(255, 180, 0, 0.8);
}

/* Portfolio Section */
.portfolio-section {
  padding: 4rem 2rem;
}

.portfolio-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffb400;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #222;
  padding: 1.8rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.2);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card h3 {
  color: #ffb400;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.service-card p {
  color: #ccc;
  line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 2rem;
  background-color: #1a1a1a;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffb400;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.package {
  background-color: #222;
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #eee;
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 180, 0, 0.5);
}

.package.popular {
  box-shadow:
    0 0 8px 2px rgba(255, 180, 0, 0.7),
    0 15px 30px rgba(255, 180, 0, 0.5);
}

.package h3 {
  color: #ffb400;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.package p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.package ul {
  list-style: disc;
  margin-left: 1.2rem;
  color: #ccc;
}

.package ul li {
  margin-bottom: 0.6rem;
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: #111;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #ffb400;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-section p li {
  margin-bottom: 0.8rem;
  list-style: disc inside;
}

/* Footer */
footer {
  background-color: #111;
  color: #888;
  padding: 1.5rem 2rem;
  border-top: 1px solid #222;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-container p {
  font-size: 0.9rem;
}

/* Footer Social Icons */
footer .social-icons a {
  color: #ffb400;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

footer .social-icons a:hover {
  color: #fff;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 2.2rem;
  padding: 0.6rem 0.8rem;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.floating-whatsapp:hover {
  background-color: #128C7E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
    margin-top: 0.8rem;
  }

  .social-icons {
    order: 2;
  }

  .logo {
    order: 1;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  header .header-container,
  footer .footer-container {
    flex-direction: column;
    gap: 1rem;
  }

  .social-icons a {
    font-size: 2rem;
  }

  nav a {
    font-size: 1rem;
    gap: 2rem;
  }

  .hero {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    padding: 6rem 2rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
  }
}
