
:root {
  --color-white: #f4f4f5;
  --color-black: #231f20;
  --color-gray: #c2c2bf;
  --color-dark: #2c3337;
  --color-blue: #249cd1;
  --color-yellow: #eec21b;
}

/* === General Layout === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: var(--color-white);
  color: var(--color-dark);
}

/* === Intro Section === */
.intro {
  padding: 15px;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h2 {
  font-size: 2.2rem;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.intro-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.intro-image-wrapper {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.intro-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 10px;
}

/* === Packages Section === */
.package {
  background-color: #fff;            /* white background */
  border: none;                      /* remove any border */
  outline: none;                     /* remove outline */
  border-radius: 12px;               /* rounded corners */
  padding: 15px;                     /* spacing inside */
  text-align: left;
  box-shadow: 0 5px 15px rgba(44, 51, 55, 0.1); /* only box-shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-title {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 2rem;
}


.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}



.package {
  background-color: #fff;
  border: 1px solid var(--color-gray);
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Reset list borders */
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  border: none;                      /* ensure no borders */
}

.package-title {
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.package-title span {
  font-size: 1.8rem;
  color: var(--color-yellow);
}

.package-subtitle {
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

/* Reset list borders */
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  border: none;                      /* ensure no borders */
}



.package-price {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-yellow);
}

.package-list li strong {
  display: inline-block;
  color: var(--color-dark);
  font-weight: 700;
  margin-right: 4px;
  white-space: normal; /* allow wrap if needed on smaller screens */
}


.package-list li {
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.package-list li::before {
  content: "✔";
  color: var(--color-blue);
  font-weight: bold;
  margin-right: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-image {
    max-width: 90%;
  }

  .package {
    text-align: center;
  }

  .package-list li {
    justify-content: center;
  }
}


.packages {
  padding: 15px;
  background-color: var(--color-white);
  text-align: center;
}

.packages-title {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 2rem;
  font-weight: 700;
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package {
  background-color: #fff;            /* white background */
  border-radius: 12px;               /* rounded corners */
  padding: 15px;                     /* spacing */
  text-align: left;
  box-shadow: 0 5px 15px rgba(44, 51, 55, 0.1); /* ONLY box-shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(44, 51, 55, 0.15);
}

.package-title {
  font-size: 1.6rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.package-title span {
  font-size: 1.8rem;
  color: var(--color-yellow);
  font-weight: 800;
}

.package-subtitle {
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.package-desc {
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.package-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 500;
}

.package-price {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-yellow);
}

/* Responsive */
@media (max-width: 768px) {
  .package {
    text-align: center;
  }

  .package-list li {
    justify-content: center;
  }
}


.add-seo {
  margin-top: 20px;
  text-align: center;
}

.add-seo a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.add-seo a:hover {
  color: var(--color-blue);
}


.package-list li em {
  padding-left: 20px;   /* extra space on the left */
  font-style: italic;    /* keeps it italic */
  color: var(--color-gray); /* subtle color for description */
  display: inline-block;  /* ensures padding works correctly */
}

.photography-package {
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.photography-package h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.photography-package p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}


.add-seo.minimal {
  text-align: center;
  margin-top: 10px;
}
.add-seo.minimal a {
  color: #222;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.add-seo.minimal a:hover {
  border-bottom: 2px solid #007bff;
  color: #007bff;
}

.add-seo.match {
  text-align: center;
  margin-top: 35px;
  margin-bottom: 15px;
}

.add-seo.match a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f4ff;
  color: var(--color-gray);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.add-seo.match a:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.add-seo.match i {
  font-size: 14px;

}


.social-campaign {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
}

.social-campaign h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #007bff;
}

.campaign-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.campaign-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
}

.social-campaign .note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}
