@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #008da0;
  --primary-2: #00a9c0;
  --light-bg: #f8f9fa;
  --border-color: #dee2e6;
  --muted-color: #6c757d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

/* ========== SECTIONS ========== */
.section-hero {
  padding: 0;
  margin-bottom: 2rem;
}

.section-cta,
.section-services,
.section-process,
.section-products,
.section-final-cta {
  position: relative;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted-color);
}

/* ========== HERO 3D BOX ========== */
.hero-3d-box {
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: white;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 141, 160, 0.2);
  animation: float 3s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-20px) rotateX(5deg); }
}

/* ========== FLIP CARDS ========== */
.flip-card {
  background-color: transparent;
  border: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
  min-height: 200px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background: white;
  border: 1px solid var(--border-color);
}

.flip-card-back {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  transform: rotateY(180deg);
}

.flip-card-front h5 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.flip-card-back p {
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== ORBIT ANIMATION ========== */
.orbit-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 3rem auto;
  border: 3px solid rgba(0, 141, 160, 0.15);
  border-radius: 50%;
}

.orbit-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 141, 160, 0.3);
  animation: orbit 8s linear infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-item:nth-child(1) { animation-delay: 0s; }
.orbit-item:nth-child(2) { animation-delay: -2.67s; }
.orbit-item:nth-child(3) { animation-delay: -5.33s; }

@keyframes orbit {
  0% { transform: translate(-50%, -50%) rotate(0deg) translateX(120px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(120px) rotate(-360deg); }
}

/* ========== PROCESS STEPS ========== */
.process-step {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 8px 25px rgba(0, 141, 160, 0.15);
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ========== PRODUCT CARDS ========== */
.product-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-12px) scale(1.01);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--light-bg);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.1) rotate(2deg);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 141, 160, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 141, 160, 0.2);
}

.photographer-badge {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  padding: 0.35rem 0.6rem;
  border-radius: 0.375rem;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0, 141, 160, 0.2);
  font-weight: 500;
}

.card-title {
  color: #222;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--muted-color);
}

.product-card .btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.product-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 141, 160, 0.3);
  color: white;
}

/* ========== CTA SECTIONS ========== */
.section-cta {
  background: linear-gradient(135deg, rgba(0, 141, 160, 0.05), rgba(0, 169, 192, 0.05));
}

.section-final-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.section-final-cta .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 0.75rem 2rem;
}

.section-final-cta .btn-light:hover {
  background: white !important;
  color: var(--primary) !important;
  transform: scale(1.05);
}

.section-final-cta .btn-outline-light:hover {
  background: white !important;
  color: var(--primary) !important;
  transform: scale(1.05);
}

/* ========== SLIDER ENHANCEMENTS ========== */
.hero-slider .slide-content h1 {
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.hero-slider .slide-content p {
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

.hero-slider .slide-content .btn {
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .hero-3d-box {
    padding: 2rem 1.5rem;
    font-size: 1.25rem;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.5rem 1rem;
    min-height: 180px;
  }

  .flip-card-front h5 {
    font-size: 1.1rem;
  }

  .orbit-container {
    width: 250px;
    height: 250px;
    margin: 2rem auto;
  }

  .orbit-item {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  @keyframes orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(100px) rotate(-360deg); }
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .step-icon {
    font-size: 2rem;
  }

  .process-step h5 {
    font-size: 1rem;
  }

  .product-card .card-img-wrap {
    height: 180px;
  }

  .card-title {
    font-size: 1rem;
  }

  .section-cta .row {
    flex-direction: column-reverse;
  }

  .section-cta .col-lg-6:first-child {
    margin-top: 2rem;
  }
}

/* Mobile (< 767px) */
@media (max-width: 767px) {
  :root {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .hero-3d-box {
    padding: 1.5rem 1rem;
    font-size: 1rem;
    margin: 1rem 0;
  }

  .flip-card-inner {
    min-height: 160px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 1.25rem 0.75rem;
    font-size: 0.9rem;
  }

  .flip-card-front h5 {
    font-size: 1rem;
  }

  .flip-card-back p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .orbit-container {
    display: none !important;
  }

  .process-step {
    padding: 1.25rem 0.75rem;
    margin-bottom: 1rem;
  }

  .step-icon {
    font-size: 1.75rem;
  }

  .process-step h5 {
    font-size: 1rem;
    margin-top: 0.75rem;
  }

  .process-step p {
    font-size: 0.85rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .product-card .card-img-wrap {
    height: 200px;
  }

  .product-card .card-body {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.875rem;
  }

  .photographer-badge {
    font-size: 0.8rem;
  }

  .price-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .product-card:hover {
    transform: translateY(-8px) scale(1.005);
  }
  
  .product-card .btn {
    width: 100%;
    padding: 0.65rem 1rem;
  }

  .section-cta ul li {
    margin-bottom: 0.75rem !important;
  }

  .section-cta .badge {
    font-size: 0.75rem;
  }

  .section-final-cta h2 {
    font-size: 1.35rem;
  }

  .section-final-cta p {
    font-size: 0.9rem;
  }

  .section-final-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .d-flex.gap-3 {
    gap: 0.75rem !important;
  }

  .hero-slider .slide-content h1 {
    font-size: 1.75rem;
  }

  .hero-slider .slide-content p {
    font-size: 0.95rem;
  }

  .container-fluid.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Extra Small (< 480px) */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.25rem;
  }

  .hero-3d-box {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .section-final-cta .btn {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }

  .d-flex.gap-3.flex-wrap {
    flex-direction: column;
  }

  .section-header h2 {
    line-height: 1.3;
  }
}

/* ========== UTILITY CLASSES ========== */
.bg-light {
  background-color: var(--light-bg) !important;
}

.text-muted {
  color: var(--muted-color) !important;
}

.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.overflow-hidden {
  overflow: hidden;
}

/* Smooth transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease;
}
