/* Global Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-color: #4b5563;
  --heading-color: #1f2937;
  --light-bg: #f9fafb;
  --dark-bg: #111827;
  --light-card: #ffffff;
  --dark-card: #1e293b;
  --border-radius: 12px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--light-bg);
  transition: var(--transition);
}

.dark-theme {
  --text-color: #e5e7eb;
  --heading-color: #f9fafb;
  background-color: var(--dark-bg);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: #1d4ed8;
}

ul {
  list-style: none;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #059669;
  color: white;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header Styles */
header {
  padding: 20px 0;
  background-color: var(--light-card);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dark-theme header {
  background-color: var(--dark-card);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--heading-color);
}

.tagline {
  font-size: 0.8rem;
  color: var(--text-color);
}

nav ul {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
}

nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Hero Section */
.inner-page-hero {
  background: linear-gradient(135deg, var(--primary-color), #3b82f6);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.inner-page-hero h1, 
.inner-page-hero p {
  color: white;
}

.inner-page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Section Title Styles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title p {
  color: var(--primary-color);
  font-weight: 500;
}

/* Services Main Section */
.services-main {
  background-color: var(--light-bg);
}

.dark-theme .services-main {
  background-color: var(--dark-bg);
}

.service-item {
  display: flex;
  background-color: var(--light-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.dark-theme .service-item {
  background-color: var(--dark-card);
}

.service-icon {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-color: rgba(37, 99, 235, 0.1);
  padding: 20px;
}

.dark-theme .service-icon {
  background-color: rgba(59, 130, 246, 0.2);
}

.service-content {
  flex: 1;
  padding: 30px;
}

.service-features {
  list-style-type: disc;
  padding-left: 20px;
  margin: 15px 0 20px;
}

.service-features li {
  margin-bottom: 8px;
}

/* Coming Soon Section */
.coming-soon-section {
  background-color: var(--light-card);
  text-align: center;
}

.dark-theme .coming-soon-section {
  background-color: var(--dark-card);
}

.coming-soon-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.coming-soon-item {
  padding: 30px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.coming-soon-item:hover {
  transform: translateY(-10px);
}

.dark-theme .coming-soon-item {
  background-color: #1f2937;
}

.cs-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Service Areas Section */
.service-areas {
  background-color: var(--light-bg);
}

.dark-theme .service-areas {
  background-color: var(--dark-bg);
}

.area-map {
  margin-bottom: 30px;
}

.map-placeholder {
  background-color: var(--light-card);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.dark-theme .map-placeholder {
  background-color: var(--dark-card);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.area {
  padding: 10px 20px;
  background-color: var(--light-card);
  border-radius: 30px;
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.area:hover {
  background-color: var(--primary-color);
  color: white;
}

.dark-theme .area {
  background-color: var(--dark-card);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #34d399);
  color: white;
  text-align: center;
}

.cta-content h2,
.cta-content p {
  color: white;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: #e5e7eb;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details {
  display: flex;
  flex-direction: column;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-item {
    flex-direction: column;
  }
  
  .service-icon {
    flex: 0 0 auto;
    width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .coming-soon-item {
    padding: 20px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo, 
  .social-links {
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
}