/* ===========================
   Wise Digital Strategies - Main Stylesheet
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #0e0c19;
}

h4 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #0e0c19;
}

.section-label {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b55dcd;
  margin-bottom: 10px;
}

.section-label-alt {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff885a;
  margin-bottom: 10px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: #b55dcd;
  color: #fff;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #9b3fb5;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: #b55dcd;
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.btn-nav {
  display: inline-block;
  background: #b55dcd;
  color: #fff;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: #9b3fb5;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 16px 0 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 16px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #b55dcd;
}

.nav-links a.active {
  color: #b55dcd;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #333;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(148deg, #b55dcd 19%, #724ebf 100%);
  padding: clamp(95px, 10vw, 192px) 0 0;
  text-align: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/software-06.png') center bottom/cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 30px 60px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 96px);
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero h4 {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

.hero h4 strong {
  font-weight: 700;
  color: #fff;
}

.hero .btn-white {
  margin-top: 20px;
}

/* Bridge section between hero and methods — white blocks transition */
.hero-bridge-section {
  background: #fff;
  margin-top: -2px;
  line-height: 0;
  max-height: 250px;
  overflow: hidden;
}

.hero-bridge-image {
  width: 100%;
}

.hero-bridge-image img {
  width: 100%;
  display: block;
}

.hero-bottom-graphic {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.hero-bottom-graphic img {
  width: 100%;
  display: block;
}

/* --- Proven Results / Methods Section --- */
.methods-section {
  background: linear-gradient(#fff 19%, #b55dcd 100%);
  padding: 57px 0 95px;
  position: relative;
  overflow: hidden;
}

.methods-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/software-06.png') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.methods-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

.methods-image {
  flex: 1;
  max-width: 500px;
}

.methods-image img {
  width: 100%;
}

.methods-text {
  flex: 1;
}

.methods-text h2 {
  font-size: 26px;
  color: #0e0c19;
  margin-bottom: 20px;
}

.methods-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* --- Packages / Pricing Section --- */
.packages-section {
  padding: 50px 0;
  text-align: center;
}

.packages-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: #fcfcfc;
  border-radius: 15px;
  box-shadow: 0 20px 80px -20px rgba(0, 46, 117, 0.14);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #0e0c19;
}

.pricing-card ul {
  text-align: center;
}

.pricing-card li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* --- Full Service Marketing Section --- */
.fullservice-section {
  background: linear-gradient(#fff 19%, #edeff2 100%);
  padding: 76px 0 95px;
}

.fullservice-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

.fullservice-text {
  flex: 1;
}

.fullservice-text .section-label {
  color: #b55dcd;
}

.fullservice-text h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.fullservice-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.fullservice-image {
  flex: 1;
  max-width: 500px;
}

.fullservice-image img {
  width: 100%;
}

/* --- Services Section --- */
.services-section {
  padding: 76px 0;
  text-align: center;
}

.services-section .section-label {
  color: #b55dcd;
}

.services-section h2 {
  font-size: 26px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.services-grid-4 {
  max-width: 800px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 80px -10px rgba(44, 54, 92, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  color: #b55dcd;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .service-icon svg {
  width: 50px;
  height: 50px;
  fill: #c4b0d1;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0e0c19;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* --- Our Work / Clients Section --- */
.clients-section {
  padding: 50px 0;
  text-align: center;
}

.clients-section .section-label {
  font-size: 16px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.clients-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.client-logo img {
  max-height: 120px;
  max-width: 200px;
  object-fit: contain;
  filter: none;
  transition: transform 0.3s;
}

.client-logo:hover img {
  transform: scale(1.05);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  background: url('../images/software-10.png') center/cover no-repeat;
  padding: 133px 0 76px;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(148deg, rgba(33, 48, 183, 0.85) 19%, rgba(255, 145, 94, 0.85) 100%);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px;
}

.cta-content h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* --- Footer --- */
.site-footer {
  padding: 50px 0;
  text-align: center;
}

.footer-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #333;
}

.site-footer h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.site-footer a.email-link {
  font-size: 16px;
  color: #333;
  display: inline-block;
  margin-bottom: 30px;
}

.site-footer a.email-link:hover {
  color: #b55dcd;
}

.social-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.social-links a {
  font-size: 22px;
  color: #333;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #b55dcd;
}

.copyright {
  font-size: 14px;
  color: #888;
}

/* ============================
   Advocacy Section Styles
   ============================ */

/* Advocacy Blurbs */
.advocacy-cards-section {
  padding: 80px 0 54px;
}

.advocacy-cards-section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

.advocacy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.advocacy-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 80px -10px rgba(44, 54, 92, 0.2);
  padding: 30px;
  text-align: center;
}

.advocacy-card-icon {
  font-size: 36px;
  color: #b55dcd;
  margin-bottom: 15px;
}

.advocacy-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0e0c19;
  margin-bottom: 12px;
}

.advocacy-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.advocacy-btn-wrap {
  text-align: center;
  padding: 20px 0 60px;
}

/* FAQ Section */
.faq-section {
  padding: 54px 0 100px;
}

.faq-section h3.faq-label {
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2130b7;
  text-align: center;
  margin-bottom: 10px;
}

.faq-section h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0e0c19;
}

.faq-toggle-icon {
  font-size: 24px;
  font-weight: 300;
  color: #2130b7;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 15px;
}

.faq-answer p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}


/* ============================
   Contact Page Styles
   ============================ */
.contact-section {
  padding: 40px 0 60px;
}

.cal-embed-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  min-height: 600px;
  background: #292929;
  border-radius: 12px;
  overflow: hidden;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero h1 {
    font-size: 30px;
  }

  .methods-inner {
    flex-direction: column;
    text-align: center;
  }

  .methods-image {
    max-width: 400px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .fullservice-inner {
    flex-direction: column;
    text-align: center;
  }

  .fullservice-image {
    max-width: 400px;
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advocacy-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero h4 {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-policy-section {
  padding: 160px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #0e0c19;
  margin-bottom: 10px;
}

.privacy-effective-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #0e0c19;
  margin-top: 40px;
  margin-bottom: 12px;
}

.privacy-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-top: 20px;
  margin-bottom: 8px;
}

.privacy-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.privacy-content ul {
  margin: 0 0 16px 24px;
  padding: 0;
}

.privacy-content li {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 6px;
}

.privacy-content a {
  color: #b55dcd;
  text-decoration: underline;
}

.privacy-content a:hover {
  color: #724ebf;
}

@media (max-width: 600px) {
  .privacy-policy-section {
    padding: 120px 16px 60px;
  }

  .privacy-policy-section h1 {
    font-size: 28px;
  }

  .privacy-content h2 {
    font-size: 19px;
  }
}
