/* =================== RESET & BASE =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif; /* linked via Google Fonts in HTML */
  background: #ffffff;
  color: #111;
  line-height: 1.4;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* =================== NAVBAR (Floating Pill) =================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 20px 50px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
  z-index: 1000;
}

.logo {
  font-size: 2.3rem;
  font-weight: 740;
  color: #111;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.logo:hover {
  color: orange;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.55);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 50px;
}

.nav-links a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 530;
  color: #111;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-links a:hover {
  color: orange;
  text-shadow: 0 0 8px rgba(255, 165, 0, 0.55);
}

/* Mobile */
.menu-toggle { display: none; }
.hamburger { display: none; font-size: 2rem; cursor: pointer; }

/* Responsive navbar */
@media (max-width: 900px) {
  .hamburger { display: block; color: #111; margin-left: 14px; }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    width: min(260px, 86vw);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.10);
    padding: 16px 18px;
    flex-direction: column;
    gap: 14px;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle:checked ~ .nav-links {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
  }

  .navbar {
    width: 95%;
    padding: 16px 30px;
  }

  .logo { font-size: 2rem; }
  .nav-links a { font-size: 1.1rem; }
}

@media (max-width: 600px) {
  .navbar {
    width: 98%;
    padding: 14px 20px;
  }

  .logo { font-size: 1.8rem; }
}

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}

.btn-ghost:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 0.95rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: orange;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* =================== HERO VISUAL (iPhone) =================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.phone-15pm {
  width: 280px;
  height: 560px;
  position: relative;
  transform: rotateZ(18deg) rotateY(16deg) rotateX(8deg);
  transform-style: preserve-3d;
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%   { transform: rotateZ(18deg) rotateY(16deg) rotateX(8deg) translateY(0); }
  50%  { transform: rotateZ(18deg) rotateY(16deg) rotateX(8deg) translateY(-14px); }
  100% { transform: rotateZ(18deg) rotateY(16deg) rotateX(8deg) translateY(0); }
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: #1d1d1f;
  border-radius: 40px;
  position: relative;
  box-shadow: 
    0 0 0 2px #2d2d2f,
    0 20px 40px rgba(0,0,0,0.3),
    inset 0 0 0 1px #000;
}

.phone-bezel {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
}

.dynamic-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-dot {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
}

.phone-screen {
  position: absolute;
  top: 60px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* Side buttons (now on RIGHT edge) */
.btn-slab {
  position: absolute;
  right: -4px;
  width: 8px;
  background: #2d2d2f;
  border-radius: 4px;
}

.btn-top {
  top: 120px;
  height: 40px;
}

.btn-mid {
  top: 180px;
  height: 60px;
}

/* Floating elements */
.float {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 165, 0, 0.1);
  animation: float 8s ease-in-out infinite;
}

.float-a {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-b {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.float-c {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(8px,-10px); }
}

/* =================== SCROLL INDICATOR =================== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wheel {
  width: 24px;
  height: 40px;
  border: 2px solid #6b7280;
  border-radius: 12px;
  position: relative;
}

.wheel::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #6b7280;
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* =================== ABOUT SECTION =================== */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.about-header p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.6;
}

.sub-note {
  font-size: 1rem;
  color: #6b7280;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 40px 20px;
  background: #f8fafc;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.5;
}

/* =================== SERVICES SECTION =================== */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 50px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: orange;
  font-weight: bold;
}

/* Button under Services Section */
.services .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #111;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* =================== PORTFOLIO SECTION =================== */
.portfolio {
  padding: 80px 0;
  background: #fff;
}

.portfolio-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.portfolio-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-item figcaption {
  padding: 30px;
}

.portfolio-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.portfolio-item p {
  color: #6b7280;
  line-height: 1.5;
}

.btn-portfolio {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #111;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-portfolio:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* =================== CONTACT FORM STYLES =================== */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: orange;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  text-align: center;
}

.form-actions .btn {
  background: #111;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* =================== CONTACT INFO CARDS =================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: orange;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #4b5563;
  margin-bottom: 8px;
}

.contact-note {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* =================== FAQ SECTION =================== */
.faq-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.6;
}

/* =================== SP HERO (Services & Contact pages) =================== */
.sp-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.sp-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.sp-hero p {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

/* =================== SP LAYOUT (Services & Contact pages) =================== */
.sp-layout { background: #f9fafb; padding: 40px 0 90px; }
.sp-section { margin: 28px 0 36px; }
.sp-section-title {
  font-size: 1.8rem;
  font-weight: 750;
  color: #111;
  margin-bottom: 6px;
  text-align: center;
}
.sp-section-subtitle {
  color: #6b6b6b;
  font-size: 0.98rem;
  margin-bottom: 16px;
  text-align: center;
}

/* Horizontal card */
.hcard {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;  /* price bar sits at bottom */
}

.hcard-main {
  display: grid;
  grid-template-columns: 1fr 2fr; /* title left, points right */
  gap: 18px;
  padding: 18px 20px;
}

.hcard-title h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.badge {
  display: inline-block;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.85rem;
  color: #555;
  background: #fff;
}

.hcard-points {
  list-style: none;
  padding-left: 0;
  color: #4b5563;
  line-height: 1.55;
  font-size: 0.95rem;
}
.hcard-points li {
  position: relative;
  padding-left: 18px;
  margin: 6px 0;
}
.hcard-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: orange;
  font-weight: 700;
}

/* Price bar */
.hcard-pricebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  padding: 14px 18px;
}
.amount {
  font-weight: 700;
  color: #111;
  font-size: 1.05rem;
}
.hcard-cta.btn {
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.hcard-cta.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

/* Notes */
.notes .note-list {
  list-style: none;
  padding-left: 0;
  color: #4b5563;
  line-height: 1.55;
}
.notes .note-list li {
  position: relative;
  padding-left: 18px;
  margin: 6px 0;
}
.notes .note-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: orange;
  font-weight: 700;
}
.sp-cta {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sp-cta .btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .25s ease, color .25s ease;
}
.sp-cta .btn:hover {
  transform: translateY(-1px);
  color: orange;
  box-shadow: 0 0 0 6px rgba(255,165,0,0.10);
}

/* =================== FOOTER =================== */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-text {
  color: #9ca3af;
  font-size: 0.95rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: orange;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  color: orange;
}

/* =================== CONTACT FORM STYLES =================== */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: orange;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  text-align: center;
}

.form-actions .btn {
  background: #111;
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* =================== CONTACT INFO CARDS =================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: orange;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #4b5563;
  margin-bottom: 8px;
}

.contact-note {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* =================== FAQ SECTION =================== */
.faq-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.faq-item p {
  color: #4b5563;
  line-height: 1.6;
}

/* =================== PORTFOLIO PAGE STYLES =================== */
.portfolio-section {
  margin-bottom: 80px;
}

.portfolio-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 16px;
}

.portfolio-section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: #fff;
  color: #111;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.portfolio-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #f3f4f6;
  color: #4b5563;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

/* Portfolio CTA Section */
.portfolio-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  
  .hcard-main { grid-template-columns: 1fr; }
  
  .form-grid { grid-template-columns: 1fr; }
  
  .contact-info-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  
  .sp-hero h1 { font-size: 2.5rem; }
  
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  
  .portfolio-section-title { font-size: 2rem; }
  
  .cta-content h2 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 1.1rem; }
  
  .section-title { font-size: 2rem; }
  
  .service-cards { grid-template-columns: 1fr; }
  .portfolio-showcase { grid-template-columns: 1fr; }
  
  .contact-form { padding: 24px; }
  
  .sp-hero h1 { font-size: 2rem; }
  .sp-hero p { font-size: 1.1rem; }
  
  .footer-container { flex-direction: column; text-align: center; }
  
  .portfolio-grid { grid-template-columns: 1fr; }
  
  .portfolio-section-title { font-size: 1.8rem; }
  
  .portfolio-section-subtitle { font-size: 1rem; }
  
  .cta-content h2 { font-size: 2rem; }
  
  .cta-content p { font-size: 1.1rem; }
  
  .cta-buttons { flex-direction: column; align-items: center; }
}

