/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primarne (Brand) */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  
  /* CTA (Akcent) */
  --orange-accent: #f97316;
  --orange-hover: #ea580c;
  
  /* Pozadine */
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-gray: #f1f5f9;
  
  /* Tekst */
  --text-dark: #1e293b;
  --text-body: #334155;
  --text-muted: #64748b;
  
  /* Border */
  --border-color: #e2e8f0;
  
  /* Transition */
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-body);
  overflow-x: hidden;
  background: var(--white);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--text-dark);
  z-index: -1;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  background: var(--text-dark);
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.sticky {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

/* Logo */
.logo a {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  content: url('logo-footer.svg');
}

.main-header.sticky .logo-img {
  content: url('logo.svg');
}

.logo-web {
  color: var(--primary-color);
}

.logo-nova {
  color: var(--text-dark);
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.main-header.sticky .nav-list li a {
  color: var(--text-body);
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.main-header.sticky .nav-list li a::after {
  background: var(--primary-color);
}

.nav-list li a:hover {
  color: var(--primary-color);
}

.nav-list li a:hover::after {
  width: 100%;
}

/* CTA Button */
.cta-button {
  background: var(--white);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.main-header.sticky .cta-button {
  background: var(--orange-accent);
  color: var(--white);
}

.cta-button:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.cta-button:focus {
  outline: 2px solid var(--orange-accent);
  outline-offset: 2px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-line {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
  margin: 3px 0;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  margin-bottom: 2rem;
}

.mobile-nav-list li {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.mobile-menu.active .mobile-nav-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(4) {
  animation-delay: 0.4s;
}

.mobile-menu.active .mobile-nav-list li:nth-child(5) {
  animation-delay: 0.5s;
}

.mobile-nav-list li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

.mobile-nav-list li a:hover {
  color: var(--primary-color);
}

.mobile-cta-button {
  background: var(--orange-accent);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.active .mobile-cta-button {
  animation: fadeInUp 0.5s 0.6s forwards;
}

.mobile-cta-button:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  /* Hero Adjustments */
  .hero {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    order: 2;
    margin-top: 2rem;
    margin-bottom: 0;
    align-self: flex-start;
    width: fit-content;
  }

  .hero h1 {
    font-size: 2.25rem;
    order: 1;
    margin-bottom: 0;
  }

  .hero-description {
    font-size: 1rem;
    order: 3;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    order: 4;
    margin-bottom: 2rem;
  }

  .hero-stats {
    order: 5;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo a {
    font-size: 1.5rem;
  }

  .mobile-nav-list li a {
    font-size: 1.25rem;
  }

  .mobile-cta-button {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }

  /* Hero Adjustments */
  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero-text {
    padding: 1.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    margin-top: 1.5rem;
    width: fit-content;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Services Grid - 2 kolone */
  .services-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-simple-item {
    padding: 1.5rem 1rem;
  }

  .service-simple-icon {
    font-size: 2.5rem;
  }

  /* Kako Radimo - 2 kolone */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .work-item {
    padding: 1.5rem 1rem;
  }

  .work-icon {
    font-size: 2.5rem;
  }

  .work-item h3 {
    font-size: 1.1rem;
  }

  .work-item p {
    font-size: 0.9rem;
  }
}

/* Mobile - 1 kolona za male ekrane */
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .work-item {
    padding: 1.5rem;
  }
}

/* Main Content */
main {
  padding-top: 80px;
}

/* Page Hero */
.page-hero {
  background: var(--text-dark);
  padding: 0;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  transform: translateY(-5vh);
}

/* Initial state - hidden before animation */
.page-hero .page-badge,
.page-hero h1,
.page-hero .page-description {
  opacity: 0;
}

/* Staggered animations for page hero */
.page-hero .page-badge {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.page-hero h1 {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.page-hero .page-description {
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.page-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Comparison Table */
.comparison-section {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--border-color);
}

.comparison-section h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.comparison-table th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-body);
}

.comparison-table tr:hover {
  background: rgba(37, 99, 235, 0.05);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  text-align: center;
}

.splash-logo {
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.splash-logo-img {
  height: 100px;
  width: auto;
}

.splash-logo .logo-web {
  color: var(--primary-color);
}

.splash-logo .logo-nova {
  color: var(--text-dark);
}

.splash-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

.splash-title .highlight {
  color: var(--primary-color);
}

/* Header animation handled in base .main-header style */

/* Hero Section */
.hero {
  background: var(--text-dark);
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* Initial state - hidden before animation */
.hero h1,
.hero-badge,
.hero-description,
.hero-buttons,
.hero-stats,
.floating-card {
  opacity: 0;
}

/* Staggered animations on page load */
.hero h1 {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-badge {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.floating-card {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-description {
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.hero-stats {
  animation: fadeInUp 0.8s ease-out 1.7s forwards;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem 0 4rem 0;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight {
  color: var(--orange-accent);
  position: relative;
}

.page-hero .highlight {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--orange-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary {
  background: var(--orange-accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-color);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Focus states for accessibility */
.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.btn-white:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn-secondary-outline:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

/* Floating cards with staggered animation */
.card-1 {
  top: 10%;
  left: 10%;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.card-2 {
  top: 45%;
  right: 10%;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.card-3 {
  bottom: 10%;
  left: 20%;
  animation: fadeInUp 0.8s ease-out 1s forwards;
}

/* Apply float animation after cards appear */
.card-1,
.card-2,
.card-3 {
  animation-name: fadeInUp, float;
  animation-duration: 0.8s, 3s;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}

.card-1 {
  animation-delay: 0.8s, 1.6s;
}

.card-2 {
  animation-delay: 0.9s, 1.7s;
}

.card-3 {
  animation-delay: 1s, 1.8s;
}

.floating-card .icon {
  font-size: 2rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInFloat {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-features li {
  color: var(--text-body);
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

/* SEO Intro Section (za paketi.php) */
.seo-intro {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: left;
}

.seo-intro h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.seo-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.seo-intro p:last-child {
  margin-bottom: 0;
}

/* Comparison intro text */
.comparison-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-body);
}

/* Packages Section */
.packages {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.package-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.package-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.package-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: var(--text-body);
  font-size: 1rem;
  margin: 0;
}

.package-price {
  text-align: center;
  padding: 2rem 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 2rem;
}

.price {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.price-note {
  display: block;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

.package-features {
  margin-bottom: 2rem;
  flex: 1;
}

.package-features h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  padding: 0.75rem 0;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.check {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.2rem;
}

.package-benefits {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
}

.benefit {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  font-size: 1.5rem;
}

.benefit strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.benefit p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.btn-package {
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: var(--transition);
  display: block;
}

/* Packages Info Box */
.packages-info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-content p {
  margin: 0;
  color: var(--text-body);
  font-size: 1rem;
}

/* À La Carte Services Section */
.alacarte-services {
  padding: 6rem 0;
  background: var(--white);
}

.alacarte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.alacarte-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.alacarte-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.alacarte-card.featured-alacarte {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.alacarte-card.recurring {
  border-color: #10b981;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.recurring-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #10b981;
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.alacarte-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.alacarte-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.alacarte-description {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex: 1;
}

.alacarte-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.alacarte-includes li {
  padding: 0.5rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
}

.alacarte-price {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-top: 2px solid #e2e8f0;
  text-align: center;
}

.price-tag {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
}

.alacarte-card.recurring .price-tag {
  color: #10b981;
}

.btn-alacarte {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  display: block;
  background: var(--primary-color);
  color: var(--white);
}

.btn-alacarte:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.alacarte-card.recurring .btn-alacarte {
  background: #10b981;
}

.alacarte-card.recurring .btn-alacarte:hover {
  background: #059669;
}

/* Services Overview Section */
.services-overview {
  padding: 6rem 0;
  background: var(--bg-gray);
  overflow-x: hidden;
}

.services-simple-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .services-simple-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .services-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .service-simple-item {
    padding: 1.5rem 1rem;
  }
  
  .service-simple-icon {
    font-size: 2.5rem;
  }
}

.service-simple-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
}

.service-simple-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.service-simple-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-simple-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-simple-item p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0;
}

/* How We Work Section */
.how-we-work {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  overflow-x: hidden;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .work-item {
    padding: 1.5rem 1rem;
  }
  
  .work-icon {
    font-size: 2.5rem;
  }
}

.work-item {
  text-align: center;
  padding: 2rem;
}

.work-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.work-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.work-item p {
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* Custom Request Box */
.custom-request {
  background: linear-gradient(135deg, var(--text-dark) 0%, #334155 100%);
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
}

.custom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.custom-icon {
  font-size: 3rem;
}

.custom-content > div {
  flex: 1;
}

.custom-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.custom-content p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Features Highlights Section */
.features-highlights {
  padding: 6rem 0;
  background: var(--white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.highlight-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.highlight-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.highlight-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.highlight-link:hover {
  gap: 0.75rem;
}

.features-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.why-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.why-number {
  position: absolute;
  top: -15px;
  left: 25px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.why-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.why-item p {
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.why-item strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Quick Packages Section */
.packages-quick {
  padding: 6rem 0;
  background: var(--bg-light);
}

.quick-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.quick-package-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.quick-package-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.quick-package-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.quick-package-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.quick-package-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.quick-package-card > p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.quick-package-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.quick-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-features li {
  padding: 0.75rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
}

.packages-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 3rem;
  border-radius: 20px;
}

.packages-cta-text {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 6rem 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: var(--primary-color);
}

.portfolio-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-placeholder {
  font-size: 4rem;
  opacity: 0.5;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-body);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.portfolio-cta {
  text-align: center;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content .highlight {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 8px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-secondary-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Footer Styles */
.main-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  height: 36px;
  width: auto;
}

.footer-logo .logo-nova {
  color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-cta-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* Responsive Design for Content */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    height: 350px;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .alacarte-grid {
    grid-template-columns: 1fr;
  }

  .custom-content {
    flex-direction: column;
    text-align: center;
  }

  .packages-info {
    flex-direction: column;
    text-align: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 100vh;
    padding: 0;
  }
  
  .page-hero-content {
    padding: 1.5rem 1rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-description {
    font-size: 1rem;
  }

  .comparison-section {
    padding: 2rem 1rem;
  }

  .comparison-section h3 {
    font-size: 1.5rem;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 2rem;
  }

  .price {
    font-size: 2rem;
  }

  .alacarte-grid {
    grid-template-columns: 1fr;
  }

  .alacarte-card {
    padding: 2rem;
  }

  .custom-request {
    padding: 2rem;
  }

  .custom-content h3 {
    font-size: 1.5rem;
  }

  .packages-info {
    padding: 1.5rem;
  }

  .info-content h4 {
    font-size: 1.1rem;
  }
  .hero {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .floating-card {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .floating-card .icon {
    font-size: 1.5rem;
  }
}

/* ============================================
   O NAMA PAGE STYLES
   ============================================ */

.about-story {
  padding: 5rem 0;
  background: var(--white);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 4rem;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.about-values h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
}

.value-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.target-clients {
  padding: 5rem 0;
  background: var(--bg-gray);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.client-type {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
}

.client-type h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.client-type p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */

.portfolio-section {
  padding: 5rem 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.portfolio-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  width: 100%;
  height: 300px;
  background: var(--bg-gray);
  position: relative;
}

.portfolio-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
}

.portfolio-placeholder svg {
  opacity: 0.3;
  margin-bottom: 1rem;
}

.portfolio-placeholder p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.portfolio-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.portfolio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-features span {
  background: var(--bg-light);
  color: var(--text-body);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
}

.portfolio-note {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.portfolio-note h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.portfolio-note p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.portfolio-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .portfolio-image {
    height: 200px;
  }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.faq-category {
  margin-bottom: 4rem;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-color);
}

.faq-item {
  margin-bottom: 1rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-item.active .faq-answer {
  padding-top: 0;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--text-dark);
  font-weight: 600;
}

.faq-answer ul {
  margin: 1rem 0 0 1.5rem;
}

.faq-answer ul li {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.faq-contact {
  padding: 5rem 0;
  background: var(--bg-gray);
}

.faq-contact-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-contact-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-contact-box p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}
