/* =========================================
   PACKING SERVICES - STANDALONE CSS
   UNIQUE DESIGN FOR PROFESSIONAL PACKING
   ========================================= */

/* CSS Variables */
:root {
  --navy: #000C2A;
  --navy-mid: #000C2A;
  --navy-dark: #000C2A;
  --orange: #ff6b35;
  --orange-light: #ff8c42;
  --cream: #f8f4e6;
  --gray: #a8b2c1;
  --accent: #f7931e;
  --accent-light: #ffa500;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 34, 54, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.2rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
}

.nav-logo span {
  font-style: italic;
  color: var(--orange);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

/* Packing Hero */
.packing-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000C2A 0%, #ff6b35 50%, #000C2A 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.packing-hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 12, 42, 0.8) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* Packing Elements */
.packing-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.packing-item {
  position: absolute;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1rem;
  backdrop-filter: blur(10px);
  animation: packingFloat 8s ease-in-out infinite;
}

.packing-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.packing-2 {
  top: 40%;
  left: 8%;
  animation-delay: 3s;
}

.packing-3 {
  bottom: 25%;
  right: 15%;
  animation-delay: 6s;
}

.packing-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.packing-text strong {
  display: block;
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.packing-text span {
  color: var(--gray);
  font-size: 0.75rem;
}

@keyframes packingFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Main Container */
.packing-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.packing-hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  width: fit-content;
}

.packing-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 0;
}

.packing-hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.packing-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 500px;
}

.packing-hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 107, 53, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
}

.feature-icon {
  font-size: 1.3rem;
  color: var(--orange);
  min-width: 24px;
}

.feature-item h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.packing-hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.packing-btn-primary {
  background: var(--orange);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}

.packing-btn-primary:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.packing-btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.packing-btn-secondary:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* Packing Showcase */
.packing-hero-right {
  position: relative;
}

.packing-showcase {
  position: relative;
  height: 500px;
  margin-bottom: 2rem;
}

.showcase-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.showcase-1 {
  top: 0;
  left: 0;
  width: 280px;
  height: 200px;
  z-index: 3;
  transform: rotate(-5deg);
}

.showcase-2 {
  top: 50px;
  right: 0;
  width: 320px;
  height: 220px;
  z-index: 2;
  transform: rotate(3deg);
}

.showcase-3 {
  bottom: 0;
  left: 50px;
  width: 260px;
  height: 180px;
  z-index: 1;
  transform: rotate(-2deg);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 34, 54, 0.9));
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
}

.showcase-text strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.showcase-text span {
  color: var(--orange);
  font-size: 0.85rem;
}

/* Packing Stats */
.packing-stats {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.packing-stat {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.3;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  margin: 4rem 0;
}

/* Sections */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  margin-bottom: 2rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 2rem;
}

h2 em {
  font-style: italic;
  color: var(--accent-light);
}

h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

/* Overview */
.service-overview {
  background: var(--navy-mid);
  padding: 6rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 600px;
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overview-icon {
  font-size: 1.5rem;
  color: var(--orange);
  min-width: 30px;
}

.overview-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.overview-feature p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 107, 53, 0.15);
  transform: translateY(-3px);
}

/* Process */
.service-process {
  background: var(--navy);
  padding: 6rem 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--gray);
  line-height: 1.6;
}

/* Services Included */
.services-included {
  background: var(--navy-mid);
  padding: 6rem 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.included-item {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.included-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
}

.included-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.included-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.included-item p {
  color: var(--gray);
  line-height: 1.6;
}

/* Gallery */
.service-gallery {
  background: var(--navy);
  padding: 6rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-tall {
  height: 350px;
  grid-row: span 2;
}

.gallery-wide {
  height: 200px;
  grid-column: span 2;
}

.gallery-small {
  height: 180px;
}

.gallery-medium {
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 34, 54, 0.9));
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-text h4 {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gallery-text p {
  color: var(--orange);
  font-size: 0.9rem;
}

/* CTA */
.service-cta {
  background: linear-gradient(135deg, #000C2A 0%, #ff6b35 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  margin-bottom: 2rem;
}

.cta-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.cta-inner p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 107, 53, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

.cta-icon {
  font-size: 1.3rem;
  color: var(--orange);
}

.cta-feature span {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--orange);
  color: var(--navy);
  padding: 1.2rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}

.cta-phone:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.phone-icon {
  font-size: 1.5rem;
}

.phone-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.phone-content span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-quote {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: var(--cream);
  padding: 1.2rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.cta-quote:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.quote-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-quote:hover .quote-arrow {
  transform: translateX(4px);
}

/* Packing Footer */
.packing-footer {
  background: linear-gradient(135deg, #000C2A 0%, #ff6b35 100%);
  padding: 3.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.packing-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-logo:hover {
  color: var(--orange);
}

.footer-logo span {
  font-style: italic;
  color: var(--accent-light);
}

.footer-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 400px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 107, 53, 0.08);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--orange);
}

.contact-info strong {
  display: block;
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info span {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  width: fit-content;
}

.footer-actions h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin: 0;
}

.footer-actions h3 em {
  font-style: italic;
  color: var(--accent-light);
}

.footer-actions p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 400px;
}

.footer-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-btn-primary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--orange);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--orange);
}

.footer-btn-primary:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer-btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.footer-btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.footer-btn-secondary:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.bottom-content p {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.separator {
  color: var(--gray);
  opacity: 0.5;
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--orange);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .packing-hero {
    min-height: auto;
    padding: 4rem 0;
    padding-top: 100px;
  }
  
  .packing-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
  }
  
  .packing-elements {
    display: none;
  }
  
  .packing-showcase {
    height: 350px;
  }
  
  .showcase-item {
    width: 200px;
  }
  
  .packing-stats {
    justify-content: center;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .packing-hero {
    padding-top: 120px;
  }
  
  .packing-hero-container {
    padding: 1rem;
  }
  
  .packing-showcase {
    height: 300px;
  }
  
  .showcase-item {
    width: 160px;
  }
  
  .packing-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .packing-hero-actions,
  .cta-actions,
  .footer-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
  }
  
  nav { padding: 1.2rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================
   QUOTE CARD
   ========================================= */
.quote-card {
  background: rgba(0, 12, 42, 0.85);
  border: 1px solid rgba(255, 103, 0, 0.35);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/z1-(23).webp') center/cover no-repeat;
  opacity: 0.07;
  z-index: 0;
  border-radius: 16px;
}

.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-card-header { margin-bottom: 1.8rem; }

.quote-card-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FF6700;
  background: rgba(255, 103, 0,0.1);
  border: 1px solid rgba(255, 103, 0,0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.quote-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.quote-card-header h3 em { font-style: italic; color: #FF6700; }
.quote-card-header p { font-size: 0.82rem; color: #8a9bb0; margin: 0; }

.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.quote-field { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }

.quote-field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a9bb0;
}

.quote-field input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 103, 0,0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #f5f0e8;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.quote-field input::placeholder { color: rgba(138,155,176,0.5); }
.quote-field input:focus { border-color: rgba(255, 103, 0,0.6); }
.quote-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.quote-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #FF6700;
  color: #000C2A;
  border: none;
  border-radius: 6px;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.4rem;
}

.quote-submit svg { width: 16px; height: 16px; transition: transform 0.3s; }
.quote-submit:hover { background: #FF8533; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 103, 0,0.35); }
.quote-submit:hover svg { transform: translateX(4px); }

.quote-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 103, 0,0.1);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quote-card-footer span { font-size: 0.75rem; color: #8a9bb0; }
.quote-card-footer a { font-size: 0.75rem; color: #FF6700; text-decoration: none; transition: color 0.3s; }
.quote-card-footer a:hover { color: #FF8533; }

@media (max-width: 900px) { .quote-card { max-width: 100%; } }

/* =========================================
   REVIEW LOGOS STRIP
   ========================================= */
.review-logos {
  background: var(--navy);
  border-top: 1px solid rgba(255, 103, 0, 0.18);
  border-bottom: 1px solid rgba(255, 103, 0, 0.18);
}

.review-logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.review-logo-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 2rem;
  transition: transform 0.3s;
}

.review-logo-item:hover { transform: translateY(-3px); }

.review-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-logo-icon.google    { background: #4285F4; color: #fff; }
.review-logo-icon.facebook  { background: #1877F2; color: #fff; }
.review-logo-icon.homeadvisor { background: #F4A000; color: #fff; font-size: 0.7rem; }
.review-logo-icon.thumbtack { background: #009FD9; color: #fff; }
.review-logo-icon.yelp      { background: #D32323; color: #fff; font-size: 0.85rem; }

.review-logo-text { display: flex; flex-direction: column; gap: 0.15rem; }

.review-stars { color: #f5a623; font-size: 0.72rem; letter-spacing: 0.05em; }

.review-logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #f8f4e6;
  letter-spacing: 0.04em;
}

.review-logo-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 103, 0,0.2);
  flex-shrink: 0;
}

/* =========================================
   WHY EXTENDED
   ========================================= */
.why-extended {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why-extended::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 103, 0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.why-ext-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.why-ext-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  margin-top: 1.2rem;
  font-weight: 300;
}

.why-ext-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-ext-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255, 103, 0,0.12);
  border-radius: 8px;
  padding: 2.4rem 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-ext-card:hover {
  background: rgba(255, 103, 0,0.05);
  border-color: rgba(255, 103, 0,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-ext-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 103, 0,0.1);
  border: 1px solid rgba(255, 103, 0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF6700;
}

.why-ext-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
}

.why-ext-card p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--gray);
  flex: 1;
}

.why-ext-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6700;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, letter-spacing 0.3s;
}

.why-ext-link:hover { color: #FF8533; letter-spacing: 0.15em; }

.why-ext-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 360px;
}

.why-ext-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.why-ext-image-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: #FF6700;
  color: #000C2A;
  border-radius: 8px;
  padding: 1.4rem 1.8rem;
  text-align: center;
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 0.3rem;
}

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section {
  background: var(--navy-mid);
  padding: 5rem 0 2.25rem;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 103, 0,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-color: rgba(255, 103, 0,0.3);
}

.blog-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FF6700;
  color: #000C2A;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.blog-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.blog-meta { display: flex; align-items: center; gap: 0.8rem; }

.blog-date {
  font-size: 0.7rem;
  color: #FF6700;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.blog-category { font-size: 0.7rem; color: var(--gray); }

.blog-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
}

.blog-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-body h3 a:hover { color: #FF6700; }

.blog-body p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--gray);
  flex: 1;
}

.blog-read-more {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF6700;
  text-decoration: none;
  font-weight: 500;
  transition: letter-spacing 0.3s, color 0.3s;
  margin-top: 0.4rem;
  display: inline-block;
}

.blog-read-more:hover { color: #FF8533; letter-spacing: 0.18em; }

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 0.8rem 1.8rem;
  border: 1px solid rgba(255, 103, 0,0.3);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #FF6700;
  color: #FF6700;
}

@media (max-width: 900px) {
  .review-logo-divider { display: none; }
  .review-logo-item { padding: 0.6rem 1rem; }
  .why-ext-grid { grid-template-columns: 1fr; }
  .why-ext-header { text-align: left; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
}

/* === NAVBAR LOGO OVERRIDE (unificar con index) === */
nav {
  height: 64px !important;
  padding: 0 4rem !important;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: 115px;
  width: auto;
  display: block;
  margin: -33px 0;
}
@media (max-width: 900px) {
  nav { padding: 0 2rem !important; }
  .nav-logo img { height: 90px; margin: -18px 0; }
}