/* ===== CSS RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #e1193e;
  --secondary: #0a2c5e;
  --light: #f8f9fa;
  --dark: #333;
  --gray: #666;
  --light-gray: #f1f1f1;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}

.btn:hover {
  background: #c01034;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 25, 62, 0.2);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: #081f44;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: var(--secondary);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info i {
  margin-right: 8px;
  color: var(--primary);
}

.social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 16px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--primary);
}

.main-header {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  color: var(--primary);
  font-size: 32px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  color: var(--primary);
  font-size: 24px;
  margin: 0;
}

.logo-text span {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(10, 44, 94, 0.9), rgba(10, 44, 94, 0.8)),
    url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 180px 0 100px;
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* ===== GOOGLE ADS BANNER ===== */
.ads-banner {
  background: var(--light-gray);
  padding: 20px 0;
  text-align: center;
}

.ads-container {
  max-width: 970px;
  margin: 0 auto;
  padding: 0 15px;
}

.ads-placeholder {
  background: white;
  padding: 20px;
  border: 2px dashed #ddd;
  border-radius: 5px;
  color: var(--gray);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 80px 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 44, 94, 0.2);
  transition: var(--transition);
}

.service-card:hover .service-img::before {
  background: rgba(225, 25, 62, 0.3);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-content ul {
  list-style: none;
  margin-top: 15px;
}

.service-content ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.service-content ul li:last-child {
  border-bottom: none;
}

.service-content ul li i {
  color: var(--primary);
  margin-right: 10px;
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--secondary);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-features {
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 20px;
  margin-top: 5px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 25, 62, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* ===== FOOTER ===== */
footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128c7e;
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-policy {
  padding: 120px 0 80px;
  background: var(--light);
}

.privacy-content {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.privacy-content h1 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 36px;
}

.privacy-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 24px;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  margin: 15px 0 15px 20px;
}

.privacy-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(rgba(10, 44, 94, 0.9), rgba(10, 44, 94, 0.8)),
    url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 80px;
}

.page-banner h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  margin: 0 5px;
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 80px 0;
}

.service-detail {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-detail-img {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-box {
  background: var(--light);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-5px);
}

.feature-box:hover h4 {
  color: white;
}

.feature-box i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-box:hover i {
  color: white;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 80px 0;
}

.map-container {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .about-content,
  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .service-detail-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 130px;
    left: -100%;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .services,
  .about,
  .contact-section,
  .services-page,
  .contact-page {
    padding: 60px 0;
  }

  .privacy-content,
  .service-detail,
  .contact-form,
  .contact-info-card {
    padding: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact p {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
