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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-manrope);
}

/* BrightSiteDev Theme Variables */
:root {
  --primary-color: #2563eb; /* Bright blue */
  --primary-dark: #1e3a8a; /* Navy blue */
  --primary-light: #60a5fa; /* Light blue */
  --bg-light: #ffffff;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --card-bg: #f9fafb;
  --card-hover: #f3f4f6;
  --border-radius: 12px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
  --ff-manrope: "Manrope", sans-serif;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 50px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background-color: var(--card-hover);
}

.card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.15),
    rgba(37, 99, 235, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.plan-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price {
  margin-bottom: 15px;
}

.currency {
  font-size: 1.5rem;
  margin-right: 2px;
  color: var(--primary-color);
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
}

.period {
  font-size: 1rem;
  color: var(--text-gray);
}

.description {
  font-size: 0.95rem;
  color: var(--text-gray);
}

.card-body {
  padding: 30px;
  flex-grow: 1;
}

.features {
  list-style: none;
}

.features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features li i {
  margin-right: 10px;
  font-size: 0.9rem;
}

.features li i.fa-check {
  color: var(--primary-color);
}

.features li i.fa-times {
  color: #ef4444;
}

.features li.disabled {
  opacity: 0.6;
  color: var(--text-gray);
}

.card-footer {
  padding: 20px 30px 30px;
}

.btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary-dark);
  background-color: #e0e7ff;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-light);
  color: #fff;
}

.btn-accent {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn-accent:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.popular {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
  z-index: 2;
}

.popular:hover {
  transform: translateY(-10px) scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 3;
}

/* Testimonial */
.testimonial {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.quote {
  max-width: 700px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.quote i {
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.quote p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  padding-left: 15px;
  color: var(--text-dark);
}

.author {
  display: flex;
  align-items: center;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--primary-color);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info h4 {
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--primary-color);
}

/* Responsive Fix */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    margin: 0 auto 40px;
  }

  .card,
  .popular {
    transform: none;
  }
  .card:hover,
  .popular:hover {
    transform: translateY(-5px);
  }

  .quote {
    padding: 25px;
  }
}
/* Service Buttons Styling */
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.service-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.service-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.service-btn.active {
  background-color: var(--primary-color);
  color: #fff;
}
/* Back to Home Button */
.back-home {
  text-align: center;
  margin-top: 40px;
}

.back-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-light);
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}
/* Logo Section */
.logo-container {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  width: 150px; /* default size */
  height: auto;
  border-radius: 20%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Added price styling */
.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #007bff;
  margin: 10px 0;
}

/* Back home button */
.back-home {
  display: inline-block;
  margin: 40px auto 20px auto;
  text-align: center;
  background: #007bff; /* Bright blue */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-home:hover {
  background: #0056b3; /* Darker blue on hover */
}

/* Center back home button */
.back-home-container {
  text-align: center;
}
/* Back home button */
.back-home {
  display: inline-block;
  margin: 40px auto 20px auto;
  text-align: center;
  background: #007bff; /* Bright blue */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-home:hover {
  background: #0056b3; /* Darker blue on hover */
}

/* Center back home button */
.back-home-container {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo {
    width: 120px; /* smaller on mobile */
  }
}
