/* ==========================================================================
   FRAMEWORK — Video Editor Portfolio Site
   style.css

   Table of contents:
   1. Reset & base
   2. Layout helpers (container, section, buttons)
   3. Navbar
   4. Mobile menu
   5. Hero
   6. Services
   7. Portfolio
   8. Testimonials
   9. Pricing
   10. About
   11. FAQ
   12. Book Now / CTA section
   13. Footer
   14. Floating WhatsApp button
   15. Animations
   16. Responsive
   ========================================================================== */

/* ---------- 1. Reset & base ---------- */

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

html, body {
  background: #0a0a0a;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection {
  background: #ff3d00;
  color: #fff;
}

.display {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

/* ---------- 2. Layout helpers ---------- */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ff3d00;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #ff3d00;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.section-sub {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.7;
}

/* Buttons — sharp edges, 5px radius */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #ff3d00;
  color: #fff;
}

.btn-primary:hover {
  background: #e63600;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.btn-sm {
  padding: 11px 20px;
  font-size: 11px;
}

/* ---------- 3. Navbar ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand span {
  color: #ff3d00;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
}

.hamburger div {
  width: 24px;
  height: 2px;
  background: #fff;
}

.hamburger div:last-child {
  width: 16px;
}

/* ---------- 4. Mobile menu ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

/* ---------- 5. Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-size: clamp(3rem, 9vw, 7.5rem);
  max-width: 900px;
}

.hero-title .accent {
  color: #ff3d00;
}

.hero-desc {
  margin-top: 28px;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 64px;
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ---------- 6. Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 60px;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-card {
  background: #0d0d0d;
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: #131313;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  background: rgba(255,61,0,0.12);
  color: #ff3d00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ---------- 7. Portfolio ---------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}

.portfolio-item video, .portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover video,
.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff3d00;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-name {
  font-size: 20px;
  font-weight: 700;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 5px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ---------- 8. Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 32px;
}

.stars {
  display: flex;
  gap: 4px;
  color: #ff3d00;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: #ff3d00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.person-name {
  font-size: 14px;
  font-weight: 700;
}

.person-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ---------- 9. Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border-color: #ff3d00;
  background: #141110;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  background: #ff3d00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 5px;
}

.pricing-name {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.pricing-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.pricing-features svg {
  color: #ff3d00;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- 10. About ---------- */

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

.about-media {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,0.1);
}

.about-media img, .about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.about-stat {
  border-left: 2px solid #ff3d00;
  padding-left: 16px;
}

.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---------- 11. FAQ ---------- */

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #ff3d00;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 700px;
}

/* ---------- 12. Book Now / CTA section ---------- */

.book-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.book-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,61,0,0.18) 0%, transparent 60%),
    #0a0a0a;
}

.book-content {
  position: relative;
  z-index: 2;
}

.book-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.book-sub {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.book-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1fb958;
}

/* ---------- 13. Footer ---------- */

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-heading {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-btn:hover {
  border-color: #ff3d00;
  color: #ff3d00;
}

/* ---------- 14. Floating WhatsApp button ---------- */

.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 5px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s ease;
}

.float-whatsapp:hover {
  transform: scale(1.08);
}

/* ---------- 15. Animations ---------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ---------- 16. Responsive ---------- */

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

@media (max-width: 768px) {
  .nav-links, .nav-right .btn-outline { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 0; }
  .hero-content { padding: 120px 24px 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
