@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #050505;
  --bg-surface: rgba(20, 20, 20, 0.7);
  --bg-surface-hover: rgba(40, 40, 40, 0.9);
  --text-main: #f8f9fa;
  --text-muted: #adb5bd;
  --primary: #d4af37;
  /* Metallic Gold */
  --primary-hover: #b5952f;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2.section-title {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

h2.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  box-shadow: var(--glow);
}

/* Layout Setup */
section {
  padding: 6rem 5%;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Glassmorphism Classes */
.glass {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--glow);
}

/* Navbar (Optional visual flair) */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 5%;
  transition: var(--transition);
}

header.scrolled {
  padding: 1rem 5%;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 600px;
  padding: 0;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease-out;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero-content .cta-group {
  animation: fadeUp 1s ease-out 0.4s both;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

/* Filters */
.filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-group label {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: 'Outfit';
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.filter-select:hover,
.filter-select:focus {
  border-color: var(--primary);
}

.filter-select option {
  background: var(--bg-color);
  color: #fff;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3);
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.08);
}

.portfolio-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #000;
  transform: rotateY(180deg);
}

/* Best of The Month */
.bom-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .bom-container {
    flex-direction: row;
    align-items: center;
  }
}

.bom-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.bom-gallery .main-img {
  grid-column: 1 / -1;
  height: 300px;
}

.bom-gallery .sub-img {
  height: 200px;
}

.bom-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition);
}

.bom-gallery img:hover {
  transform: scale(1.03);
}

.bom-info {
  flex: 1;
  padding: 2rem;
}

.bom-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.bom-info p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
}

.feature-text h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Process Steps */
.process-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-wrapper::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--glass-border);
}

.process-step {
  display: flex;
  gap: 2rem;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  padding: 1.5rem;
  width: 100%;
}

.step-content h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.step-content p {
  color: var(--text-muted);
}

/* Modals (Lightbox) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
}

.modal-content {
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.img-after {
  z-index: 1;
}

.img-before {
  z-index: 2;
  width: 50%;
  object-position: left;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-handle::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Floating WA */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
  background: #000;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.logo img {
  height: 40px;
  object-fit: contain;
}

.running-text {
  overflow: hidden;
  white-space: nowrap;
  background: var(--primary);
  color: #000;
  padding: 6px 0;
  font-weight: 600;
  border-radius: 6px;
  position: relative;
}

#running-text-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

#running-text-inner {
  display: inline-block;
  padding-left: 100%;
  /* mulai dari luar layar sebelah kanan */
  animation: marqueeMove 8s linear infinite;
}

#running-text-content {
  display: inline-block;
  padding-right: 50px;
}

/* DUPLIKASI TEXT BIAR LOOP HALUS */
#running-text-inner::after {
  content: attr(data-text);
  margin-left: 50px;
}


@keyframes marqueeMove {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  /* Modal umum */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    z-index: 1000;
  }

  .modal.active {
    display: flex;
  }

  #modalContent {
    background: var(--bg-surface);
    padding: 15px;
    border-radius: 12px;
    width: 95%;
    max-height: 85vh;
    position: relative;
    border: 1px solid var(--glass-border);
  }

  .hide-on-mobile {
    display: none !important;
  }

  .hide-on-desktop {
    display: flex !important;
  }
}

/* ========================================
   UTILITIES & CHIPS (GLOBAL / SHARED)
======================================== */
.hide-on-desktop {
  display: none !important;
}

.mobile-brand-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.mobile-brand-container::-webkit-scrollbar {
  height: 4px;
}

.mobile-brand-container::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.brand-chip {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
}

.brand-chip.active,
.brand-chip:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* ========================================
   LIGHTBOX FULLSCREEN
======================================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  color: #000;
}

.lightbox-prev {
  left: 20px;
  /* Jarak aman di mobile */
}

.lightbox-next {
  right: 20px;
}

/* ========================================
   MOBILE FILTERS (PORTFOLIO)
======================================== */
/* Default: mobile */
.mobile-only {
  display: block !important;
}

.desktop-only {
  display: none !important;
}

/* Desktop */
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: flex !important;
    /* Kembalikan ke flex untuk filters-wrapper */
  }
}

/* Style chip / button */
.chip-group {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px 0;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.chip-group::-webkit-scrollbar {
  height: 4px;
}

.chip-group::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.chip {
  flex: 0 0 auto;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.chip.active,
.chip:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

/* ========================================
   STYLING KHUSUS CHIP BRAND (Vertikal)
======================================== */
.chip.chip-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 65px;
    padding: 8px 6px;
    border-radius: 10px;
    gap: 4px;
}

.chip.chip-brand .brand-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.chip.chip-brand .brand-placeholder {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.8;
}

.chip.chip-brand .brand-placeholder i {
    font-size: 16px !important;
}

.chip.chip-brand span {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
}


/* ========================================
   GLOBAL MOBILE COMPACT OPTIMIZATIONS
======================================== */
@media (max-width: 480px) {
    /* Tipografi Utama & Hero */
    .hero-content h1 {
        font-size: 1.8rem !important; /* Mencegah judul terpotong */
        line-height: 1.3 !important;
    }
    .hero-content p {
        font-size: 0.9rem !important;
    }
    h2.section-title {
        font-size: 1.5rem !important; /* "PORTFOLIO KAMI" jadi proporsional */
        margin-bottom: 1.5rem !important;
    }
    
    /* Ukuran Tombol Global */
    .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
        border-radius: 30px !important;
    }
    
    /* Jarak/Padding Global */
    section {
        padding: 4rem 5% 3rem !important;
    }
    
    /* Navbar & Logo Header */
    header {
        padding: 0.8rem 5% !important;
    }
    .logo img {
        height: 30px !important; /* Mengecilkan logo di pojok kiri atas */
    }
    .logo span {
        font-size: 1.2rem !important;
    }
    
    /* Running Text (Marquee) */
    .running-text {
        font-size: 0.75rem !important;
        padding: 4px 0 !important;
        margin-top: 5px !important;
    }
    
    /* Chip Filter Biasa (Bukan Brand) */
    .chip:not(.chip-brand) {
        padding: 5px 12px !important;
        font-size: 10px !important;
    }
    
    /* Jarak antar filter */
    .mobile-only .mobile-brand-container, 
    .mobile-only .chip-group {
        gap: 6px !important;
        padding-bottom: 5px !important;
        margin-bottom: 0.5rem !important;
    }
}


/* ========================================
   GLOBAL MOBILE COMPACT v2 (ULTRA COMPACT)
======================================== */
@media (max-width: 480px) {
    /* CHIP MEREK & KATEGORI (TIDAK ADA YANG TERTUTUP LAGI) */
    .chip-group {
        flex-wrap: wrap !important; /* Paksa tombol turun ke bawah agar tidak ada yg disembunyikan area scroll */
        justify-content: flex-start !important; /* Rata kiri */
        gap: 6px !important;
        overflow: visible !important;
    }
    
    .chip.chip-brand {
        min-width: 55px !important; /* Jauh lebih kecil */
        padding: 6px 4px !important;
        border-radius: 8px !important;
    }
    
    .chip.chip-brand .brand-img,
    .chip.chip-brand .brand-placeholder {
        width: 22px !important;
        height: 22px !important;
    }
    
    .chip.chip-brand .brand-placeholder i {
        font-size: 14px !important;
    }
    
    .chip.chip-brand span {
        font-size: 9px !important;
    }
    
    /* CHIP BIASA (Wrap, PPF, Black, dll) */
    .chip:not(.chip-brand) {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }
    
    /* UKURAN FOTO PORTFOLIO (LEBIH KECIL) */
    .portfolio-img-wrapper {
        height: 180px !important; /* Mengurangi tinggi frame gambar dramatis */
    }
    
    .portfolio-card {
        border-radius: 12px !important;
    }
    
    .portfolio-info {
        padding: 1rem !important;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .portfolio-info p {
        font-size: 0.85rem !important;
    }

    /* SERVICES CARD */
    .service-card {
        padding: 1.5rem 1rem !important;
    }
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
}
