/* ============================================
   PENGUIN PHOTOBOOTHS - Main Stylesheet
   Color Palette:
   - Primary Dark:  #1C2434 (near black)
   - Secondary:     #1a1f2e
   - Accent Orange: #E8752A (penguin orange)
   - Accent Hover:  #D06822
   - CTA Orange:    #E8752A
   - CTA Hover:     #D06822
   - White:         #FFFFFF
   - Light BG:      #F5F5F5
   - Text:          #222222
   - Text Light:    #6B7280
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1C2434;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: #555;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}

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

.btn-primary:hover {
  background: #D06822;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 117, 42, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #1C2434;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #E8752A;
  border: 2px solid #E8752A;
}

.btn-outline:hover {
  background: #E8752A;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Header / Navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.25rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.15rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.logo {
  display: flex;
  align-items: center;
  overflow: visible;
}

.logo-img {
  height: 240px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.header.scrolled .logo-img {
  height: 240px;
  filter: none;
}

.footer .logo-img {
  height: 90px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header.scrolled .nav-links a {
  color: #1C2434;
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: #E8752A;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E8752A;
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta {
  background: #E8752A !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #D06822 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 117, 42, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.header.scrolled .menu-toggle span {
  background: #1C2434;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1C2434 0%, #1a1f2e 50%, #222831 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 117, 42, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 117, 42, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 117, 42, 0.15);
  color: #E8752A;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(232, 117, 42, 0.3);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: #E8752A;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat h3 {
  color: #E8752A;
  font-size: 2rem;
}

.stat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1f2e, #222831);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(232, 117, 42, 0.3);
}

.hero-image-placeholder span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 15%;
  left: -10%;
  animation-delay: 1.5s;
}

.floating-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.floating-card .card-icon.blue { background: rgba(232, 117, 42, 0.15); }
.floating-card .card-icon.orange { background: rgba(232, 117, 42, 0.15); }

.floating-card .card-text h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.floating-card .card-text p {
  font-size: 0.75rem;
  color: #6B7280;
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Section Spacing ---------- */
section {
  padding: 6rem 0;
}

.bg-light {
  background: #F5F5F5;
  position: relative;
}

/* Penguin footprint pattern on light sections */
.bg-light::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='100' viewBox='0 0 80 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231C2434'%3E%3Cellipse cx='32' cy='12' rx='4' ry='8' transform='rotate(-20 32 12)'/%3E%3Cellipse cx='40' cy='8' rx='4' ry='9'/%3E%3Cellipse cx='48' cy='12' rx='4' ry='8' transform='rotate(20 48 12)'/%3E%3Cellipse cx='40' cy='26' rx='8' ry='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 100px;
}

.bg-dark {
  background: #1C2434;
}

/* ---------- Services Preview (Home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1C2434, #E8752A);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(232, 117, 42, 0.1), rgba(232, 117, 42, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #6B7280;
  font-size: 0.95rem;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E8752A, #D06822);
  color: #fff;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.why-card h3 {
  margin-bottom: 0.75rem;
}

.why-card p {
  color: #6B7280;
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
  position: relative;
}

.testimonial-card .stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C2434, #E8752A);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author .author-info h4 {
  font-size: 0.95rem;
}

.testimonial-author .author-info p {
  font-size: 0.8rem;
  color: #6B7280;
  margin: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1C2434, #1a1f2e);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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='%23E8752A' 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");
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 2rem;
}

/* ---------- Packages (Services page) ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border: 2px solid #E8752A;
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #E8752A;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-header {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
}

.package-header .package-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.package-header h3 {
  margin-bottom: 0.5rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: 1rem;
}

.package-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1C2434;
}

.package-price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1C2434;
  line-height: 1;
}

.package-price .period {
  color: #6B7280;
  font-size: 0.9rem;
}

.package-features {
  padding: 1.5rem 2rem 2.5rem;
  flex: 1;
}

.package-features ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.95rem;
  color: #555;
}

.package-features ul li:last-child {
  border-bottom: none;
}

.package-features ul li .check {
  color: #E8752A;
  font-weight: 700;
  font-size: 1.1rem;
}

.package-footer {
  padding: 0 2rem 2.5rem;
  text-align: center;
}

.package-footer .btn {
  width: 100%;
}

/* ---------- Add-ons ---------- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.addon-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.addon-card:hover {
  border-color: #E8752A;
  box-shadow: 0 5px 15px rgba(232, 117, 42, 0.1);
}

.addon-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}

.addon-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.addon-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.addon-info p {
  font-size: 0.85rem;
  color: #6B7280;
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid #E5E7EB;
  color: #6B7280;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E8752A;
  border-color: #E8752A;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #E5E7EB;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 47, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 1rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.85rem;
  gap: 8px;
}

.gallery-placeholder .placeholder-icon {
  font-size: 2rem;
  opacity: 0.5;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- About Page ---------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #E5E7EB;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Story Text */
.about-story-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1C2434;
  margin-bottom: 1.5rem;
}

.about-story-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.5rem;
}

.about-story-text p.drop-cap::first-letter {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  float: left;
  line-height: 0.8;
  margin-right: 0.15em;
  margin-top: 0.1em;
  color: #E8752A;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.9rem;
}

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

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-icon svg {
  width: 100px;
  height: 100px;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  color: #6B7280;
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #E8752A;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1C2434;
  text-align: left;
}

.faq-question .faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s;
  color: #E8752A;
}

.faq-item.active .faq-toggle {
  background: #E8752A;
  color: #fff;
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  color: #6B7280;
  line-height: 1.7;
}

/* ---------- Contact / Quote Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding: 2.5rem;
  background: linear-gradient(135deg, #1C2434, #1a1f2e);
  border-radius: 20px;
  color: #fff;
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail .detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 117, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail .detail-text h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail .detail-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.contact-detail .detail-text a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-detail .detail-text a:hover {
  color: #fff;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: #E8752A;
  transform: translateY(-2px);
}

/* Form Styles */
.quote-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
}

.quote-form h3 {
  margin-bottom: 0.5rem;
}

.quote-form > p {
  color: #6B7280;
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1C2434;
  margin-bottom: 6px;
}

.form-group label .required {
  color: #E8752A;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: border-color 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #E8752A;
  box-shadow: 0 0 0 3px rgba(232, 117, 42, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #9CA3AF;
}

/* ---------- Page Headers ---------- */
.page-header {
  background: linear-gradient(135deg, #1C2434 0%, #1a1f2e 50%, #222831 100%);
  padding: 12rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    /* Penguin 1 - top left, standing */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 2 - right side, slightly rotated */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 3 - bottom center-left */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 4 - top right area */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 5 - mid left */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 6 - far right bottom */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 7 - top center */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Penguin 8 - bottom right */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 60'%3E%3Cellipse cx='20' cy='18' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='20' cy='35' rx='14' ry='20' fill='white'/%3E%3Cellipse cx='20' cy='38' rx='10' ry='16' fill='white' opacity='0.5'/%3E%3Cellipse cx='5' cy='32' rx='5' ry='3' fill='white' transform='rotate(-30 5 32)'/%3E%3Cellipse cx='35' cy='32' rx='5' ry='3' fill='white' transform='rotate(30 35 32)'/%3E%3Cellipse cx='16' cy='54' rx='5' ry='2.5' fill='white'/%3E%3Cellipse cx='24' cy='54' rx='5' ry='2.5' fill='white'/%3E%3C/svg%3E"),
    /* Orange glow */
    radial-gradient(circle at 80% -20%, rgba(232, 117, 42, 0.1) 0%, transparent 70%);
  background-size:
    45px 68px, 38px 57px, 35px 52px, 42px 63px,
    32px 48px, 48px 72px, 30px 45px, 40px 60px,
    500px 500px;
  background-position:
    6% 30%, 88% 40%, 22% 72%, 75% 18%,
    3% 55%, 94% 68%, 50% 22%, 62% 78%,
    80% -20%;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.footer {
  background: #111118;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #E8752A;
  padding-left: 5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #E8752A;
}

.newsletter-form button {
  padding: 12px 20px;
  background: #E8752A;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #D06822;
}

.footer-instagram {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.footer-instagram a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.footer-instagram svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-story-text h2 {
    font-size: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #1C2434;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #fff !important;
  }

  .header {
    padding: 0.5rem 0;
  }

  .header.scrolled {
    padding: 0.3rem 0;
  }

  .logo-img {
    height: 90px;
  }

  .header.scrolled .logo-img {
    height: 90px;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 4rem 0;
  }

  .page-header {
    padding: 10rem 0 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PENGUIN FUN THEME ENHANCEMENTS
   ============================================ */

/* ---------- Wave Section Dividers ---------- */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider.flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 80px;
  }
}

/* ---------- Snowfall Effect on Dark Sections ---------- */
.hero::before,
.cta-banner::after,
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 25% 60%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 40% 10%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 55% 40%, rgba(255,255,255,0.25) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 75%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 85% 30%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 15% 80%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(2px 2px at 50% 85%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 55%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 35% 50%, rgba(255,255,255,0.12) 50%, transparent 50%),
    radial-gradient(2px 2px at 60% 15%, rgba(255,255,255,0.18) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 90%, rgba(255,255,255,0.14) 50%, transparent 50%);
  animation: snowDrift 20s linear infinite;
  z-index: 0;
}

.hero::before {
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 25% 60%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 40% 10%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 55% 40%, rgba(255,255,255,0.25) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 75%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 85% 30%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 15% 80%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(2px 2px at 50% 85%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 55%, rgba(255,255,255,0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 35% 50%, rgba(255,255,255,0.12) 50%, transparent 50%);
  animation: snowDrift 25s linear infinite;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-header .container,
.cta-banner .container {
  position: relative;
  z-index: 2;
}

@keyframes snowDrift {
  0% { transform: translateY(-5%) translateX(0); }
  25% { transform: translateY(0%) translateX(2%); }
  50% { transform: translateY(5%) translateX(0); }
  75% { transform: translateY(0%) translateX(-2%); }
  100% { transform: translateY(-5%) translateX(0); }
}

/* ---------- Floating Penguin Decorations ---------- */
.penguin-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.penguin-decor svg {
  width: 100%;
  height: 100%;
}

.penguin-decor.decor-1 {
  width: 120px;
  height: 120px;
  bottom: 5%;
  right: 5%;
  animation: waddle 4s ease-in-out infinite;
}

.penguin-decor.decor-2 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 3%;
  animation: waddle 5s ease-in-out infinite reverse;
}

@keyframes waddle {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  25% { transform: rotate(3deg) translateY(-5px); }
  50% { transform: rotate(-3deg) translateY(0); }
  75% { transform: rotate(5deg) translateY(-3px); }
}

/* ---------- Ice/Arctic Blobs on Hero ---------- */
.hero {
  overflow: hidden;
}

.hero .container {
  z-index: 2;
}

.ice-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ice-blob-1 {
  width: 400px;
  height: 400px;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 117, 42, 0.08) 0%, transparent 70%);
  animation: blobPulse 8s ease-in-out infinite;
}

.ice-blob-2 {
  width: 300px;
  height: 300px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: blobPulse 10s ease-in-out infinite 2s;
}

.ice-blob-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  right: 30%;
  background: radial-gradient(circle, rgba(232, 117, 42, 0.05) 0%, transparent 70%);
  animation: blobPulse 6s ease-in-out infinite 4s;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ---------- Fun Card Hover Effects ---------- */
.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
  transform: translateY(-5px) rotate(0.5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.package-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.value-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
}

/* ---------- Playful Button Animations ---------- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

/* ---------- Penguin Footprint Trail on Hero ---------- */
.footprint-trail {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  overflow: hidden;
}

.footprint-trail svg {
  position: absolute;
  width: 30px;
  height: 36px;
}

.footprint-trail .fp-1 { left: 5%; transform: rotate(-10deg); }
.footprint-trail .fp-2 { left: 12%; transform: rotate(10deg); }
.footprint-trail .fp-3 { left: 19%; transform: rotate(-10deg); }
.footprint-trail .fp-4 { left: 26%; transform: rotate(10deg); }
.footprint-trail .fp-5 { left: 33%; transform: rotate(-10deg); }
.footprint-trail .fp-6 { left: 40%; transform: rotate(10deg); }

/* ---------- Iceberg-style Contact Info Card ---------- */
.contact-info {
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 117, 42, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info::after {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

/* ---------- Sparkle on Stats ---------- */
/* ---------- Stat Numbers ---------- */

/* ---------- Fun FAQ Penguin Icon (removed) ---------- */

/* ---------- Section Titles Fun Underline ---------- */
.section-title {
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #E8752A;
  border-radius: 4px;
}

/* ---------- (paw prints removed) ---------- */

/* ---------- Footer Penguin Flair ---------- */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='100' viewBox='0 0 80 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' opacity='0.015'%3E%3Cellipse cx='32' cy='12' rx='4' ry='8' transform='rotate(-20 32 12)'/%3E%3Cellipse cx='40' cy='8' rx='4' ry='9'/%3E%3Cellipse cx='48' cy='12' rx='4' ry='8' transform='rotate(20 48 12)'/%3E%3Cellipse cx='40' cy='26' rx='8' ry='5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 100px;
  pointer-events: none;
}

/* ---------- Animated Gradient Border on Featured Package ---------- */
.package-card.featured {
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #E8752A, #1C2434, #E8752A, #1C2434);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: borderGlow 3s linear infinite;
  background-size: 100% 100%, 300% 300%;
}

@keyframes borderGlow {
  0% { background-position: 0 0, 0% 0%; }
  50% { background-position: 0 0, 100% 100%; }
  100% { background-position: 0 0, 0% 0%; }
}

/* ---------- Gallery hover zoom with fun bounce ---------- */
.gallery-item:hover img {
  transform: scale(1.08);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ---------- Hero badge bounce on load ---------- */
.hero-badge {
  animation: badgeBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}

@keyframes badgeBounce {
  0% { opacity: 0; transform: translateY(-20px) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Penguin emoji confetti on CTA sections ---------- */
.cta-banner {
  overflow: hidden;
}

.cta-banner::before {
  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='%23E8752A' 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"),
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.12) 50%, transparent 50%),
    radial-gradient(3px 3px at 80% 20%, rgba(255,255,255,0.1) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,0.12) 50%, transparent 50%);
  animation: none;
}

/* ============================================
   ICEBERG THEME
   ============================================ */

/* ---------- Iceberg Dividers ---------- */
.iceberg-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.iceberg-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Floating Iceberg Decorations ---------- */
.iceberg-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.iceberg-float svg {
  width: 100%;
  height: 100%;
}

.iceberg-float-1 {
  width: 180px;
  height: 120px;
  top: 15%;
  left: -30px;
  animation: icebergBob 8s ease-in-out infinite;
}

.iceberg-float-2 {
  width: 120px;
  height: 80px;
  top: 40%;
  right: -20px;
  animation: icebergBob 6s ease-in-out 1s infinite;
}

.iceberg-float-3 {
  width: 100px;
  height: 65px;
  bottom: 20%;
  left: 5%;
  animation: icebergBob 10s ease-in-out 2s infinite;
}

@keyframes icebergBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(4px) rotate(-0.5deg); }
  75% { transform: translateY(-4px) rotate(0.5deg); }
}

/* ---------- Service Cards - Iceberg Style ---------- */
.service-card.iceberg {
  border-radius: 20px 20px 8px 8px;
  border: none;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #daf0fa 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.service-card.iceberg::before {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 42px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(100, 180, 220, 0.35), rgba(100, 180, 220, 0.5), rgba(100, 180, 220, 0.35), transparent);
  z-index: 2;
}

.service-card.iceberg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(180, 220, 240, 0.25), rgba(140, 200, 230, 0.15));
  border-radius: 0 0 8px 8px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
}

.service-card.iceberg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(100, 180, 220, 0.2);
}

.service-card.iceberg:hover::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, transparent, rgba(100, 180, 220, 0.5), rgba(100, 180, 220, 0.7), rgba(100, 180, 220, 0.5), transparent);
}

/* ---------- Iceberg Water Line on Sections ---------- */
.water-line {
  position: relative;
}

.water-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent,
    rgba(100, 180, 220, 0.3) 20%,
    rgba(100, 180, 220, 0.5) 50%,
    rgba(100, 180, 220, 0.3) 80%,
    transparent
  );
  animation: waterShimmer 4s ease-in-out infinite;
}

@keyframes waterShimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ---------- Why Choose Us - Iceberg Numbered Cards ---------- */
.why-card.iceberg-tip {
  position: relative;
  background: #fff;
  border-radius: 4px 4px 16px 16px;
  padding: 2.5rem 1.5rem 2rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.why-card.iceberg-tip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 20px solid #E8752A;
}

.why-card.iceberg-tip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(180, 220, 240, 0.08));
  pointer-events: none;
}

/* ---------- CTA Banner - Arctic Sky ---------- */
.cta-banner.arctic {
  background: linear-gradient(180deg, #1C2434 0%, #1a2a3e 40%, #1d3550 70%, #1f4060 100%);
  position: relative;
}

.cta-banner.arctic .iceberg-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Testimonial Cards - Ice Block Style ---------- */
.testimonial-card.ice-block {
  background: linear-gradient(135deg, #ffffff, #f7fbfe);
  border: 1px solid rgba(100, 180, 220, 0.15);
  border-top: 3px solid rgba(100, 180, 220, 0.3);
  position: relative;
}

.testimonial-card.ice-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(200, 230, 245, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(200, 230, 245, 0.05) 0%, transparent 50%);
  pointer-events: none;
  border-radius: inherit;
}

.testimonial-card.ice-block:hover {
  border-color: rgba(100, 180, 220, 0.3);
  box-shadow: 0 15px 40px rgba(100, 180, 220, 0.12);
}

/* ---------- Package Cards - Iceberg Peaks ---------- */
.package-card.iceberg-peak {
  position: relative;
  border: none;
  background: linear-gradient(180deg, #fff 0%, #fff 80%, #eef7fb 100%);
  overflow: visible;
}

.package-card.iceberg-peak::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10%;
  right: 10%;
  height: 16px;
  background: radial-gradient(ellipse at center, rgba(100, 180, 220, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
}

/* ---------- Iceberg Hero Landscape ---------- */
.iceberg-landscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.iceberg-landscape svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Backdrop Gallery - Ice Frame ---------- */
.backdrop-card.ice-frame {
  border: 2px solid rgba(100, 180, 220, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f8fcfe 100%);
}

.backdrop-card.ice-frame:hover {
  border-color: rgba(100, 180, 220, 0.35);
  box-shadow: 0 12px 35px rgba(100, 180, 220, 0.18);
}

/* ---------- Iceberg Mobile Adjustments ---------- */
@media (max-width: 768px) {
  .iceberg-float { display: none; }
  .iceberg-divider { height: 50px; }
  .iceberg-landscape { height: 60px; }
}

/* ---------- About Story - Penguin Photo Strips Background ---------- */
.about-story-section {
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  background-image:
    /* Strip 1 - top left, tilted right - 3 penguins posing */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 180'%3E%3Crect width='60' height='180' rx='3' fill='%231C2434'/%3E%3Crect x='4' y='4' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='20' cy='22' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='20' cy='24' rx='3.5' ry='5' fill='%23fff'/%3E%3Ccircle cx='18' cy='20' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='22' cy='20' r='1.2' fill='%231C2434'/%3E%3Cpath d='M19,26 L20,29 L21,26Z' fill='%23E8752A'/%3E%3Cellipse cx='30' cy='22' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='30' cy='24' rx='3.5' ry='5' fill='%23fff'/%3E%3Ccircle cx='28' cy='20' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='32' cy='20' r='1.2' fill='%231C2434'/%3E%3Cpath d='M29,26 L30,29 L31,26Z' fill='%23E8752A'/%3E%3Cellipse cx='40' cy='22' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='40' cy='24' rx='3.5' ry='5' fill='%23fff'/%3E%3Ccircle cx='38' cy='20' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='42' cy='20' r='1.2' fill='%231C2434'/%3E%3Cpath d='M39,26 L40,29 L41,26Z' fill='%23E8752A'/%3E%3Crect x='4' y='48' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='66' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='68' rx='5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='63' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='63' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,69 L30,73 L31,69Z' fill='%23E8752A'/%3E%3Crect x='4' y='92' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='25' cy='110' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='25' cy='112' rx='4' ry='6' fill='%23fff'/%3E%3Ccircle cx='23' cy='108' r='1.3' fill='%231C2434'/%3E%3Ccircle cx='27' cy='108' r='1.3' fill='%231C2434'/%3E%3Cpath d='M24,113 L25,116 L26,113Z' fill='%23E8752A'/%3E%3Cellipse cx='38' cy='112' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='38' cy='114' rx='4' ry='6' fill='%23fff'/%3E%3Ccircle cx='36' cy='110' r='1.3' fill='%231C2434'/%3E%3Ccircle cx='40' cy='110' r='1.3' fill='%231C2434'/%3E%3Cpath d='M37,115 L38,118 L39,115Z' fill='%23E8752A'/%3E%3Crect x='4' y='136' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='154' rx='9' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='156' rx='5.5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='151' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='151' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,157 L30,161 L31,157Z' fill='%23E8752A'/%3E%3C/svg%3E"),
    /* Strip 2 */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 180'%3E%3Crect width='60' height='180' rx='3' fill='%231C2434'/%3E%3Crect x='4' y='4' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='22' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='24' rx='5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='20' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='20' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,25 L30,29 L31,25Z' fill='%23E8752A'/%3E%3Crect x='4' y='48' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='22' cy='66' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='22' cy='68' rx='4' ry='6' fill='%23fff'/%3E%3Ccircle cx='20' cy='64' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='24' cy='64' r='1.2' fill='%231C2434'/%3E%3Cpath d='M21,69 L22,72 L23,69Z' fill='%23E8752A'/%3E%3Cellipse cx='38' cy='66' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='38' cy='68' rx='4' ry='6' fill='%23fff'/%3E%3Ccircle cx='36' cy='64' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='40' cy='64' r='1.2' fill='%231C2434'/%3E%3Cpath d='M37,69 L38,72 L39,69Z' fill='%23E8752A'/%3E%3Crect x='4' y='92' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='110' rx='9' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='112' rx='5.5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='108' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='108' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,113 L30,117 L31,113Z' fill='%23E8752A'/%3E%3Crect x='4' y='136' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='20' cy='154' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='20' cy='156' rx='3.5' ry='5' fill='%23fff'/%3E%3Ccircle cx='18' cy='152' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='22' cy='152' r='1.2' fill='%231C2434'/%3E%3Cpath d='M19,157 L20,160 L21,157Z' fill='%23E8752A'/%3E%3Cellipse cx='30' cy='153' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='30' cy='155' rx='3.5' ry='5' fill='%23fff'/%3E%3Ccircle cx='28' cy='151' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='32' cy='151' r='1.2' fill='%231C2434'/%3E%3Cpath d='M29,156 L30,159 L31,156Z' fill='%23E8752A'/%3E%3Cellipse cx='40' cy='154' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='40' cy='156' rx='3.5' ry='5' fill='%23fff'/%3E%3Ccircle cx='38' cy='152' r='1.2' fill='%231C2434'/%3E%3Ccircle cx='42' cy='152' r='1.2' fill='%231C2434'/%3E%3Cpath d='M39,157 L40,160 L41,157Z' fill='%23E8752A'/%3E%3C/svg%3E"),
    /* Strip 3 */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 180'%3E%3Crect width='60' height='180' rx='3' fill='%231C2434'/%3E%3Crect x='4' y='4' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='25' cy='22' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='25' cy='24' rx='4' ry='6' fill='%23fff'/%3E%3Ccircle cx='23' cy='20' r='1.3' fill='%231C2434'/%3E%3Ccircle cx='27' cy='20' r='1.3' fill='%231C2434'/%3E%3Cpath d='M24,25 L25,28 L26,25Z' fill='%23E8752A'/%3E%3Cellipse cx='38' cy='22' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='38' cy='24' rx='4' ry='6' fill='%23fff'/%3E%3Ccircle cx='36' cy='20' r='1.3' fill='%231C2434'/%3E%3Ccircle cx='40' cy='20' r='1.3' fill='%231C2434'/%3E%3Cpath d='M37,25 L38,28 L39,25Z' fill='%23E8752A'/%3E%3Crect x='4' y='48' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='66' rx='9' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='68' rx='5.5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='63' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='63' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,69 L30,73 L31,69Z' fill='%23E8752A'/%3E%3Crect x='4' y='92' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='110' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='112' rx='5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='108' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='108' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,113 L30,117 L31,113Z' fill='%23E8752A'/%3E%3Crect x='4' y='136' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='154' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='156' rx='5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='151' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='151' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,157 L30,161 L31,157Z' fill='%23E8752A'/%3E%3C/svg%3E"),
    /* Strip 4 */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 180'%3E%3Crect width='60' height='180' rx='3' fill='%231C2434'/%3E%3Crect x='4' y='4' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='22' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='24' rx='5' ry='7' fill='%23fff'/%3E%3Ccircle cx='27' cy='20' r='1.5' fill='%231C2434'/%3E%3Ccircle cx='33' cy='20' r='1.5' fill='%231C2434'/%3E%3Cpath d='M29,25 L30,29 L31,25Z' fill='%23E8752A'/%3E%3Crect x='4' y='48' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='22' cy='66' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='22' cy='68' rx='3.5' ry='5' fill='%23fff'/%3E%3Cellipse cx='38' cy='66' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='38' cy='68' rx='3.5' ry='5' fill='%23fff'/%3E%3Crect x='4' y='92' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='110' rx='9' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='112' rx='5.5' ry='7' fill='%23fff'/%3E%3Crect x='4' y='136' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='20' cy='154' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='20' cy='156' rx='3.5' ry='5' fill='%23fff'/%3E%3Cellipse cx='30' cy='153' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='30' cy='155' rx='3.5' ry='5' fill='%23fff'/%3E%3Cellipse cx='40' cy='154' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='40' cy='156' rx='3.5' ry='5' fill='%23fff'/%3E%3C/svg%3E"),
    /* Strip 5 */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 180'%3E%3Crect width='60' height='180' rx='3' fill='%231C2434'/%3E%3Crect x='4' y='4' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='25' cy='22' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='25' cy='24' rx='4' ry='6' fill='%23fff'/%3E%3Cellipse cx='38' cy='22' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='38' cy='24' rx='4' ry='6' fill='%23fff'/%3E%3Crect x='4' y='48' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='66' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='68' rx='5' ry='7' fill='%23fff'/%3E%3Crect x='4' y='92' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='22' cy='110' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='22' cy='112' rx='4' ry='6' fill='%23fff'/%3E%3Cellipse cx='38' cy='110' rx='7' ry='9' fill='%231C2434'/%3E%3Cellipse cx='38' cy='112' rx='4' ry='6' fill='%23fff'/%3E%3Crect x='4' y='136' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='154' rx='9' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='156' rx='5.5' ry='7' fill='%23fff'/%3E%3C/svg%3E"),
    /* Strip 6 */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 180'%3E%3Crect width='60' height='180' rx='3' fill='%231C2434'/%3E%3Crect x='4' y='4' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='22' rx='9' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='24' rx='5.5' ry='7' fill='%23fff'/%3E%3Crect x='4' y='48' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='25' cy='66' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='25' cy='68' rx='3.5' ry='5' fill='%23fff'/%3E%3Cellipse cx='37' cy='66' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='37' cy='68' rx='3.5' ry='5' fill='%23fff'/%3E%3Crect x='4' y='92' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='30' cy='110' rx='8' ry='10' fill='%231C2434'/%3E%3Cellipse cx='30' cy='112' rx='5' ry='7' fill='%23fff'/%3E%3Crect x='4' y='136' width='52' height='40' rx='2' fill='%23fff'/%3E%3Cellipse cx='20' cy='154' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='20' cy='156' rx='3.5' ry='5' fill='%23fff'/%3E%3Cellipse cx='40' cy='154' rx='6' ry='8' fill='%231C2434'/%3E%3Cellipse cx='40' cy='156' rx='3.5' ry='5' fill='%23fff'/%3E%3C/svg%3E");
  background-size:
    75px auto, 70px auto, 65px auto,
    72px auto, 68px auto, 74px auto;
  background-position:
    5% 8%, 88% 5%, 15% 75%,
    92% 70%, 50% 90%, 70% 35%;
  background-repeat: no-repeat;
}

.about-story-section .container {
  position: relative;
  z-index: 1;
}

/* ---------- Leave a Review Section ---------- */
.review-section {
  padding: 5rem 0;
  background: #fff;
}

.review-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.review-penguin {
  position: absolute;
  top: -30px;
  right: -160px;
  opacity: 0.9;
  pointer-events: none;
}

.review-form {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.review-form:focus-within {
  border-color: #E8752A;
  box-shadow: 0 8px 40px rgba(232, 117, 42, 0.1);
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.review-form-group {
  margin-bottom: 1.5rem;
}

.review-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1C2434;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: #1C2434;
  background: #fafafa;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}

.review-form-group input:focus,
.review-form-group select:focus,
.review-form-group textarea:focus {
  outline: none;
  border-color: #E8752A;
  background: #fff;
}

.review-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.review-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Star Rating */
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.25rem;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 2rem;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  margin-bottom: 0;
  line-height: 1;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
  color: #F59E0B;
  transform: scale(1.1);
}

.review-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Review success message */
.review-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border: 2px solid #10B981;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.review-success.show {
  display: block;
}

.review-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.review-success h3 {
  color: #10B981;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.review-success p {
  color: #6B7280;
}

@media (max-width: 768px) {
  .review-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-form {
    padding: 1.5rem;
  }

  .review-penguin {
    display: none;
  }
}

/* ---------- Print Layout Options ---------- */
#print-layouts {
  padding: 5rem 0;
  background: #fff;
}

.layout-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.layout-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.layout-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E8752A;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.layout-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1.5rem;
  background: #f8f8f8;
  min-height: 380px;
}

/* 2x6 Strip Preview */
.layout-2x6 img {
  max-height: 360px;
  width: auto;
  border-radius: 4px;
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.layout-card:hover .layout-2x6 img {
  transform: scale(1.03) rotate(-1deg);
}

/* 4x6 Print Preview */
.layout-4x6 img {
  max-height: 360px;
  width: auto;
  border-radius: 4px;
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.layout-card:hover .layout-4x6 img {
  transform: scale(1.03) rotate(1deg);
}

/* Layout Details */
.layout-details {
  padding: 1.5rem 2rem 2rem;
}

.layout-details h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1C2434;
  margin-bottom: 0.5rem;
}

.layout-details p {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.layout-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.layout-features li {
  font-size: 0.85rem;
  color: #4B5563;
  padding-left: 1.2rem;
  position: relative;
}

.layout-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8752A;
  font-weight: 700;
}

.layout-dimensions {
  display: inline-block;
  background: #f0f0f0;
  color: #1C2434;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* Print Layout Responsive */
@media (max-width: 900px) {
  .layout-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .layout-preview {
    min-height: 280px;
    padding: 2rem 1rem;
  }

  .layout-2x6 img {
    max-height: 260px;
  }

  .layout-4x6-mockup {
    width: 200px;
  }

  .layout-details {
    padding: 1.2rem 1.5rem 1.5rem;
  }

  .layout-features {
    grid-template-columns: 1fr;
  }
}

/* ---------- Backdrop Gallery ---------- */
.backdrop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.backdrop-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.backdrop-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 35px rgba(232, 117, 42, 0.15);
  border-color: rgba(232, 117, 42, 0.3);
}

.backdrop-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.backdrop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.backdrop-card:hover .backdrop-image img {
  transform: scale(1.08);
}

.backdrop-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1C2434, #2a3447);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
}

.backdrop-placeholder .placeholder-icon {
  font-size: 2.5rem;
  filter: grayscale(0.3);
}

.backdrop-info {
  padding: 1rem 1.25rem 1.25rem;
}

.backdrop-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1C2434;
  margin-bottom: 0.3rem;
}

.backdrop-info p {
  font-size: 0.85rem;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .backdrop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .backdrop-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ---------- Video Montage Section ---------- */
.video-showcase {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-showcase video,
.video-showcase iframe {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1C2434, #2a3447 50%, #1C2434);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem;
  position: relative;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 15% 25%, rgba(232, 117, 42, 0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 75% 15%, rgba(232, 117, 42, 0.2) 50%, transparent 50%),
    radial-gradient(3px 3px at 45% 85%, rgba(232, 117, 42, 0.25) 50%, transparent 50%),
    radial-gradient(2px 2px at 85% 65%, rgba(255, 255, 255, 0.15) 50%, transparent 50%);
  pointer-events: none;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E8752A;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(232, 117, 42, 0.4);
  position: relative;
  z-index: 1;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 35px rgba(232, 117, 42, 0.55);
  background: #D06822;
}

.video-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-placeholder-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.video-placeholder-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
}

.video-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6B7280;
}

.video-feature-icon {
  font-size: 1.4rem;
}

@media (max-width: 576px) {
  .video-showcase {
    border-radius: 12px;
  }
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  .video-play-btn::after {
    border-width: 10px 0 10px 18px;
    margin-left: 3px;
  }
  .video-features {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ---------- Mobile adjustments for decorations ---------- */
@media (max-width: 768px) {
  .penguin-decor { display: none; }
  .ice-blob { display: none; }
  .footprint-trail { display: none; }
  .wave-divider svg { height: 40px; }
}
