/* Basic Reset & Defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 70px; /* Offset for sticky nav */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #444; /* Good base contrast */
  background-color: #f0f0f0;
  line-height: 1.7; /* Increased line-height for readability */
  letter-spacing: 0.5px; /* Subtle spacing for body */
}

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

h1,
h2,
h3 {
  font-weight: 600;
  color: #505050; /* Slightly darker headings */
  margin-bottom: 1rem;
  letter-spacing: 1px; /* Base spacing */
  text-align: center;
}

/* Typography Improvements */
h1 {
  font-size: 3.5rem; /* Slightly larger */
  line-height: 1.1; /* Tighter for headings */
  font-weight: 700;
  color: #333; /* Darker for better contrast */
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 600;
  color: #404040;
  margin-bottom: 2rem; /* More spacing below headings */
  letter-spacing: 1.5px;
}

h3 {
  font-size: 1.8rem;
  color: #484848;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

p {
  font-size: 1.1rem; /* Slightly larger body text */
  line-height: 1.8; /* More line height for readability */
  color: #555; /* Softer but still readable */
  max-width: 650px; /* Slightly narrower for better readability */
  margin-bottom: 1.5rem; /* More space between paragraphs */
}

a {
  color: #c56f6f;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #a55a5a;
  text-decoration: none;
}

ul {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  color: #555;
}

/* Navigation Bar */
#navbar {
  background-color: rgba(255, 255, 255, 0.97); /* Slightly less transparent */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
#navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#navbar li {
  margin: 0 15px;
}
#navbar a {
  color: #555;
  font-weight: 600;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
#navbar a:hover,
#navbar a.active {
  color: #c56f6f;
  border-bottom-color: #c56f6f;
}

/* Section Styling (With Subtle Gradients) */
.section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  /* Default subtle gradient */
  background: linear-gradient(to bottom, #f0f0f0, #f5f5f5);
  border-bottom: 1px solid #ddd;
}

.section:nth-child(even) {
  /* Applies to About, Services, Why Us */
  /* Slightly different subtle gradient for alternating sections */
  /* Note: The actual index depends on the HTML structure. Adjust if needed. */
  /* If <nav> is first, section 2 (About) is even. */
  background: linear-gradient(to bottom, #eaeaea, #f3f3f3);
}

#hero {
  /* Specific solid color for hero */
  background-color: #e0e0e0;
  border-bottom: none;
  padding-top: 100px;
}

#packages {
  /* Specific gradient for packages */
  background: linear-gradient(to bottom, #f5f5f5, #fdfdfd);
}

#contact {
  /* Specific solid color for footer */
  background-color: #e0e0e0;
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: none; /* No border on last section */
}

.full-height {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.centered {
  text-align: center;
}

.content-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.content-container ul,
.content-container .package-intro p {
  text-align: left;
  display: inline-block;
}

.section-image {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Hero Section Specifics */
.logo-container {
  margin-bottom: 1.5rem;
}
.main-logo {
  max-width: 250px;
  height: auto;
  border-radius: 50%; /* Make the logo circular */
}
.icon-placeholder {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 1.5rem;
  color: #aaa;
  z-index: 1;
}

/* About Us Section Paragraph Centering */
#about .content-container {
  text-align: center; /* Center the content */
}

#about .content-container p {
  text-align: left; /* Revert paragraph alignment to left */
  display: inline-block; /* Make the paragraph an inline block */
  max-width: 650px; /* Restore max width */
}

/* Hero Section Tagline Styling */
#hero h2 {
  font-size: 1.3rem; /* Slightly smaller */
  color: rgba(0, 0, 0, 0.6); /* Even more transparency */
  font-weight: 400; /* Lighter font weight */
  margin-bottom: 0.8rem; /* Reduced margin */
  letter-spacing: 0.5px; /* Reduced letter spacing */
  text-align: center;
  text-transform: none; /* Removed uppercase */
}

/* Packages Section */
.package-intro {
  margin-bottom: 1.5rem;
  text-align: center;
}
.package-intro p {
  max-width: none;
  margin-bottom: 0.5rem;
}

/* Startup Package Card Styling */
.startup-package-card {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px auto;
  border: 1px solid #eee;
}
.startup-package-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.startup-package-card .price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #c56f6f;
  margin-bottom: 0.5rem;
}
.startup-package-card p:last-child {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #555;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 20px auto;
}
.package-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.package-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.package-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c56f6f;
  margin: 1rem 0;
}
.package-card ul {
  padding-left: 0;
  list-style-type: none;
  max-width: none;
}
.package-card li {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
  padding-left: 25px;
  position: relative;
}
.package-card li::before {
  content: "✔";
  color: #c56f6f;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 1.1em;
}

/* Highlighted Package Styling */
.highlighted-package {
  border: 2px solid #c56f6f;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.highlighted-package:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Optional: Style for the banner */
.highlight-banner {
  position: absolute;
  top: 15px;
  right: -35px;
  background-color: #c56f6f;
  color: white;
  padding: 4px 30px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

/* Why Us / Next Step Section */
#why-next ul {
  margin-bottom: 2.5rem;
  list-style-type: none;
  padding-left: 0;
}
#why-next li {
  margin-bottom: 0.8rem;
  padding-left: 25px;
  position: relative;
}
#why-next li::before {
  content: "✔";
  color: #c56f6f;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1em;
}
.next-step-heading {
  margin-top: 3rem;
  text-align: center;
}
#why-next p {
  text-align: center;
  margin: 0 auto; /* Add this line */
  max-width: 650px; /* Add this line */
}
.cta-button,
.submit-button {
  display: block; /* Changed from inline-block */
  margin: 0 auto; /* Added to center the button */
  background-color: #c56f6f;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}
.cta-button:hover,
.submit-button:hover {
  background-color: #a55a5a;
  transform: translateY(-2px);
}

/* Footer / Contact Section */
.direct-contact-info {
  text-align: center;
  margin-bottom: 2rem;
}
.direct-contact-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}
.direct-contact-info .icon {
  margin-right: 8px;
  font-size: 1.4rem;
  color: #888;
}
.direct-contact-info a {
  color: #636363;
}
.direct-contact-info a:hover {
  color: #c56f6f;
}
#contact-form {
  max-width: 700px;
  margin: 30px auto 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-group {
  margin-bottom: 15px;
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.form-group.full-width {
  width: 100%;
}
.form-group.full-width:last-child {
  align-items: center;
}
#contact-form label {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form input[type="tel"],
#contact-form select,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: #c56f6f;
  outline: none;
}
#contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.submit-button {
  width: auto;
  padding: 12px 35px;
}
.form-note {
  font-size: 0.9rem;
  color: #666;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

/* Accent Blocks */
.accent-block {
  position: absolute;
  background-color: #d18c81;
  opacity: 0.6;
  z-index: 1;
  border-radius: 4px;
}
.accent-block-top-right {
  top: 10%;
  right: 5%;
  width: 130px;
  height: 90px;
  transform: rotate(-10deg);
}
.accent-block-left {
  top: 15%;
  left: 0;
  width: 70px;
  height: 180px;
}
.accent-block-bottom-right-small {
  bottom: 8%;
  right: 8%;
  width: 110px;
  height: 70px;
  transform: rotate(20deg);
}
.accent-block-top-left {
  top: 0;
  left: 8%;
  width: 100px;
  height: 70px;
  transform: rotate(5deg);
}
.accent-block-right {
  top: 25%;
  right: 0;
  width: 50px;
  height: 220px;
}
.accent-block-bottom-left-large {
  bottom: 0;
  left: 5%;
  width: 160px;
  height: 110px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .section {
    padding: 60px 15px;
    scroll-padding-top: 60px;
  }
  .nav-container {
    padding: 0 15px;
  }
  #navbar ul {
    justify-content: space-around;
  }
  #navbar li {
    margin: 0 8px;
  }
  .section-image {
    max-width: 95%;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .highlighted-package {
    transform: scale(1);
  } /* Remove scale on mobile */
  .highlighted-package:hover {
    transform: translateY(-5px);
  } /* Keep hover lift */
  .startup-package-card {
    max-width: 95%;
  }
  .main-logo {
    max-width: 200px;
  }

  .form-group {
    width: 100%;
    margin-right: 0;
  }
  .direct-contact-info p {
    display: flex;
    margin: 5px 0;
    justify-content: center;
  }

  .accent-block {
    display: none;
  }
  .accent-block-bottom-right-small {
    display: block;
    width: 80px;
    height: 50px;
    bottom: 5%;
    right: 5%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  #navbar {
    padding: 8px 0;
  }
  #navbar ul {
    flex-direction: column;
    align-items: center;
  }
  #navbar li {
    margin: 5px 0;
  }
  #navbar a {
    padding: 8px 10px;
  }

  .full-height {
    min-height: calc(100vh - 100px);
  }
  .content-container ul,
  .content-container p {
    text-align: left;
  }
  .package-card {
    padding: 20px;
  }
  .highlight-banner {
    font-size: 0.7rem;
    padding: 3px 20px;
    top: 10px;
    right: -30px;
  }
  .startup-package-card {
    padding: 15px 20px;
  }
  .main-logo {
    max-width: 150px;
  }

  #contact-form {
    padding: 20px;
  }
  .submit-button {
    width: 100%;
    padding: 15px;
  }
  .direct-contact-info p {
    font-size: 1rem;
  }
}

/* Services Section Icon Styling */
#services ul li i {
  margin-right: 8px;
  width: 20px; /* Adjust as needed */
  display: inline-block;
  text-align: center;
}
