/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: "Poppins", Arial, sans-serif;
  color: #222;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* CONTAINER */
.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 120px;
  /* background: linear-gradient(135deg, #ff3b3b, #d90000);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
}

.brand-role {
  font-size: 12px;
  color: #ff3b3b;
}

/* NAVIGATION */
.main-navigation .nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff3b3b;
}

/* CTA */
.cta-button {
  display: inline-block;
  padding: 10px 22px;
  background: #ff3b3b;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #d90000;
}

/* HERO SECTION */
.hero-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #ffffff, #fff5f5);
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 59, 59, 0.1);
  color: #ff3b3b;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* TITLE */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-title span {
  color: #ff3b3b;
}

/* DESCRIPTION */
.hero-description {
  margin: 15px 0 25px;
  font-size: 15px;
  color: #555;
  max-width: 480px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ff3b3b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #d90000;
}

.btn-secondary {
  background: #f1f1f1;
  color: #333;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-box h3 {
  color: #ff3b3b;
  font-size: 20px;
}

.stat-box p {
  font-size: 12px;
  color: #777;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.1),
    0 10px 40px rgba(255, 59, 59, 0.2);
}

.image-card img {
  width: 100%;
  max-width: 350px;
  display: block;
}

/* TAG */
.image-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
}

.image-tag strong {
  display: block;
  color: #000;
}

.image-tag span {
  color: #ff3b3b;
  font-size: 11px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px; /* for mobile spacing */
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

/* SECTION */
.about-section {
  padding: 80px 0;
}

/* HEADER */
.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  font-size: 12px;
  color: #ff3b3b;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  margin: 10px 0;
  font-weight: 700;
}

.section-description {
  color: #666;
  font-size: 15px;
}

/* CONTENT */
.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT */
.about-left {
  flex: 1;
  min-width: 320px;
}

.about-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.about-card h3 {
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  color: #555;
}

/* TAGS */
.about-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  background: #ffecec;
  color: #ff3b3b;
}

/* RIGHT */
.about-right {
  flex: 1;
  min-width: 320px;
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ICON */
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

/* COLORS */
.stat-icon.pink {
  background: #ffe6f0;
}

.stat-icon.orange {
  background: #fff2e6;
}

.stat-icon.red {
  background: #ffecec;
}

/* TEXT */
.stat-card h3 {
  color: #ff3b3b;
  font-size: 20px;
}

.stat-card p {
  font-size: 13px;
  color: #666;
}

/* SECTION */
.services-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #ffffff, #fff5f5);
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HOVER */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.08),
    0 10px 30px rgba(255, 59, 59, 0.15);
}

/* HIGHLIGHT CARD */
.service-card.highlight {
  background: linear-gradient(to bottom right, #fff, #ffeaea);
}

/* ICON */
.service-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ICON COLORS */
.service-icon.pink {
  background: #ffe6f0;
}

.service-icon.orange {
  background: #fff2e6;
}

.service-icon.red {
  background: #ffecec;
}

/* TEXT */
.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

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

/* CTA */
.services-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SERVICE CARD BASE
========================= */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* =========================
   HOVER (MATCH FIGMA STYLE)
========================= */
.service-card:hover {
  background: #f6eeee; /* soft warm light red/beige */
  transform: translateY(-6px);
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.06),
    0 8px 25px rgba(255, 59, 59, 0.08);
}

.service-card:hover {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f9eeee 100%
  );
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  transition: 0.3s ease;
}

/* SECTION */
.portfolio-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #ffffff, #fff5f5);
}

/* HEADER */
.portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.portfolio-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* IMAGE */
.portfolio-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* TEXT */
.portfolio-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.portfolio-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

/* TAGS */
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.portfolio-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #ffecec;
  color: #ff3b3b;
}

/* LINK */
.portfolio-link {
  font-size: 13px;
  color: #ff3b3b;
  text-decoration: none;
  font-weight: 500;
}

/* HOVER (MATCH YOUR UI) */
.portfolio-card:hover {
  background: #f6eeee;
  transform: translateY(-6px);
  box-shadow: 
    0 12px 30px rgba(0,0,0,0.06),
    0 8px 25px rgba(255, 59, 59, 0.08);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #ffffff, #fff5f5);
}

/* HEADER */
.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

/* CARD */
.pricing-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  position: relative;
}

/* BADGE */
.plan-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: #ffecec;
  color: #ff3b3b;
}

/* POPULAR BADGE */
.plan-badge.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 14px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TEXT */
.pricing-card h3 {
  font-size: 30px;
  margin: 10px 0;
}

.pricing-card h3 span {
  font-size: 14px;
  color: #777;
}

.plan-desc {
  font-size: 13px;
  color: #666;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: #ff3b3b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
}

.btn-light {
  display: inline-block;
  background: #fff;
  color: #ff3b3b;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
}

/* =========================
   HOVER EFFECT (RED)
========================= */
.pricing-card:hover {
  background: linear-gradient(135deg, #ff3b3b, #d90000);
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.1),
    0 15px 35px rgba(255, 59, 59, 0.25);
}

/* TEXT WHITE ON HOVER */
.pricing-card:hover h3,
.pricing-card:hover ul li,
.pricing-card:hover .plan-desc {
  color: #fff;
}

/* BUTTON CHANGE */
.pricing-card:hover .btn-primary {
  background: #fff;
  color: #ff3b3b;
}

/* =========================
   ACTIVE CARD (DEFAULT RED)
========================= */
.pricing-card.active {
  background: linear-gradient(135deg, #ff3b3b, #d90000);
  color: #fff;
  transform: scale(1.05);
}

.pricing-card.active ul li,
.pricing-card.active .plan-desc {
  color: #fff;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #ffffff, #fff5f5);
}

/* HEADER */
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* HOVER */
.testimonial-card:hover {
  background: #f6eeee;
  transform: translateY(-6px);
}

/* QUOTE ICON */
.quote-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #ff3b3b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.quote-icon.orange {
  background: #ff6a00;
}

.quote-icon.pink {
  background: #ff2e88;
}

/* STARS */
.stars {
  color: #f4b400;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AVATAR */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff3b3b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.avatar.orange {
  background: #ff6a00;
}

.avatar.pink {
  background: #ff2e88;
}

/* NAME */
.testimonial-user h4 {
  font-size: 14px;
  margin: 0;
}

.testimonial-user span {
  font-size: 12px;
  color: #777;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(to bottom right, #ffffff, #fff5f5);
}

/* HEADER */
.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* LAYOUT */
.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT */
.contact-left {
  flex: 1;
  min-width: 320px;
}

.contact-text {
  font-size: 14px;
  color: #555;
  margin: 10px 0 20px;
}

/* INFO BOX */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* HOVER */
.info-box:hover {
  background: #f6eeee;
  transform: translateY(-3px);
}

/* ICON */
.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.icon.red { background: #ff3b3b; }
.icon.orange { background: #ff6a00; }
.icon.pink { background: #ff2e88; }

/* BUTTONS */
.contact-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
}

.btn-call {
  background: #3b82f6;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
}

/* RIGHT FORM */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* FORM */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 13px;
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #f4f4f4;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
}

/* BUTTON */
.contact-form button {
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #d90000;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}

/* FOOTER */
.footer {
  background: #ffffff;
  padding-top: 60px;
  border-top: 1px solid #eee;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #ff3b3b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
}

/* TEXT */
.footer-about p {
  font-size: 14px;
  color: #666;
  margin: 10px 0 15px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 35px;
  height: 35px;
  background: #f4f4f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff3b3b;
  color: #fff;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ff3b3b;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ff3b3b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #d90000;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding: 15px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* POLICY */
.footer-policy a {
  margin-left: 15px;
  font-size: 13px;
  text-decoration: none;
  color: #777;
}

.footer-policy a:hover {
  color: #ff3b3b;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* =========================
   PORTFOLIO SECTION (UPGRADED)
========================= */
.portfolio-section {
  padding: 100px 0;
background: linear-gradient(135deg, #7f0000, #ff3b3b);  position: relative;
  overflow: hidden;
  color: #fff;
}


/* HEADER */
.portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.portfolio-header .section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  color: #38bdf8;
}

.portfolio-header .section-title {
  font-size: 42px;
  margin: 15px 0;
  font-weight: 700;
}

.portfolio-header .section-description {
  color: #cbd5f5;
  font-size: 15px;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.portfolio-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 25px;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT 🔥 */
.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: #38bdf8;
}

/* GLOW EFFECT */
.portfolio-card::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent);
  top: -60%;
  left: -60%;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-card:hover::before {
  opacity: 1;
}

/* TITLE */
.portfolio-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

/* TEXT */
.portfolio-card p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* LINK */
.portfolio-card a {
  display: inline-block;
  text-decoration: none;
  color: #38bdf8;
  font-weight: 500;
  transition: 0.3s;
}

.portfolio-card a:hover {
  color: #0ea5e9;
  transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-header .section-title {
    font-size: 32px;
  }
}

/* SECTION */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff, #fff5f5);
}

/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

/* GRID (EQUAL SIZE FIXED) */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch; /* IMPORTANT */
}

/* CARD */
.pricing-card {
  width: 320px;
  display: flex;
}

/* INNER BOX (GLASS EFFECT) */
.card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;

  padding: 28px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 59, 59, 0.15);

  transition: 0.25s ease;
}

/* HOVER (CLEAN, NOT JUMPY) */
.card-inner:hover {
  box-shadow: 0 12px 30px rgba(255, 59, 59, 0.15);
  border-color: #ff3b3b;
}

/* HIGHLIGHT CARD */
.pricing-card.highlight .card-inner {
  border: 1.5px solid #ff3b3b;
}

/* BADGE */
.badge {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  background: #ff3b3b;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* TEXT */
.pricing-card h4 {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.pricing-card h3 {
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
}

.plan-desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 18px;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

/* CLEAN BULLET */
.pricing-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff3b3b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* BUTTON */
.btn {
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  background: #ff3b3b;
  color: #fff;
  font-size: 14px;
  transition: 0.2s;
}

.btn:hover {
  background: #d90000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HEADER */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

/* CONTAINER */
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.brand-logo {
    height: 45px;
}

/* NAV */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* HOVER UNDERLINE */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: red;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-link:hover {
    color: red;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA BUTTON */
.cta-button {
    padding: 8px 18px;
    background: red;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: black;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: black;
}

/* MOBILE */
@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .main-navigation.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .header-cta {
        display: none;
    }
}