/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.6;
}
a {
  color: #e63946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #1d3557;
}

/* Navbar transparent and above hero */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1d3557;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Hero section image fills and shows top */
.hero {
  color: #fff;
  text-align: center;
  padding: 7rem 2rem 5rem 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center 30% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Animated underline for active link */
.nav-links li {
  position: relative;
}
.nav-links li.active a {
  color: #e63946 !important;
}
.nav-links li.active a::after,
.nav-links li a.underline-animate::after {
  content: '';
  display: block;
  height: 3px;
  background: #e63946;
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: var(--underline-width, 0%);
  transition: width 0.3s cubic-bezier(.4,2,.6,1), background 0.2s;
}
.nav-links li a.underline-animate {
  color: #e63946;
}

/* Navbar */
.logo {
  font-size: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.main-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-right: 14px;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.18s;
}
.logo-link:hover .main-logo {
  transform: scale(1.08) rotate(-2deg);
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-logo {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 1rem auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links li a {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #e63946;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero Section */
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn:hover {
  background: #1d3557;
  color: #fff;
}
.hero-title {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* Section Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
section h2, section h1 {
  font-family: 'Montserrat', sans-serif;
  color: #1d3557;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  text-align: center;
}

/* Services Preview & Full */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(29,53,87,0.08);
  overflow: hidden;
  width: 220px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(230,57,70,0.15);
}
.service-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.service-card h3, .service-card h2 {
  margin: 1rem 0 0.5rem 0;
  font-size: 1.2rem;
  color: #e63946;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  padding: 0 1rem 1rem 1rem;
}

/* Gallery Preview & Full */
.gallery-row, .gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-row img, .gallery-item img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.08);
  transition: transform 0.2s;
}
.gallery-row img:hover, .gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-item {
  position: relative;
  text-align: center;
}
.gallery-item span {
  display: block;
  margin-top: 0.5rem;
  color: #1d3557;
  font-weight: 600;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.filter-btn {
  background: #fff;
  border: 2px solid #e63946;
  color: #e63946;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: #e63946;
  color: #fff;
}

/* About Page */
.team-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.team-member {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(29,53,87,0.08);
  padding: 1.5rem 1rem;
  text-align: center;
  width: 200px;
}
.team-member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-member h3 {
  color: #e63946;
  margin-bottom: 0.3rem;
}
.team-member p {
  color: #444;
  font-size: 1rem;
}

/* Contact Page */
.contact-wrapper {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.contact-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(29,53,87,0.08);
  padding: 2rem 1.5rem;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 600;
  color: #1d3557;
}
.contact-form input, .contact-form textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form button {
  margin-top: 1rem;
}
.contact-details {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(29,53,87,0.08);
  padding: 2rem 1.5rem;
}
.map-placeholder {
  background: #e9ecef;
  color: #888;
  border-radius: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #1d3557;
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  margin-top: 3rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.social-links {
  margin: 1rem 0;
}
.social-links a {
  color: #fff;
  margin: 0 0.7rem;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #e63946;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
  transform: scale(1.08);
}
.whatsapp-icon {
  width: 36px;
  height: 36px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .services-list, .team-list, .gallery-row, .gallery-grid, .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .service-card, .team-member, .contact-form, .contact-details {
    width: 90%;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: none;
    background: #1d3557;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .main-logo {
    height: 38px;
    margin-right: 8px;
  }
  .logo-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  .hero-logo {
    height: 80px;
  }
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 18px;
    left: 18px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .container {
    padding: 2rem 0.5rem;
  }
  .service-card img, .gallery-row img, .gallery-item img {
    width: 100%;
    height: 120px;
  }
}

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

.book-now-btn {
  background: #e63946;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 25px;
  font-weight: bold;
  margin-left: 0;
  text-decoration: none;
  transition: background 0.2s;
}
.book-now-btn:hover {
  background: #a4161a;
  color: #fff;
}

/* Intro Teaser */
.intro-teaser {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.intro-teaser h2 {
  color: #e63946;
  margin-bottom: 1rem;
}
.intro-teaser p {
  font-size: 1.2rem;
  color: #333;
}

/* Photo Grid Preview */
.photo-grid-preview {
  background: #f8f9fa;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.photo-grid-preview h2 {
  color: #1d3557;
  margin-bottom: 1.5rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  justify-items: center;
  margin-bottom: 1rem;
}
.grid-img {
  width: 100%;
  max-width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.grid-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(230,57,70,0.15);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  margin: 5vh auto;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

/* Specialties */
.specialties {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.specialties-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.specialty-item {
  font-size: 2.2rem;
  color: #e63946;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.specialty-item span {
  font-size: 1rem;
  color: #1d3557;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: #f8f9fa;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.testimonial-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(29,53,87,0.08);
  padding: 1.5rem 1rem;
  max-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #e63946;
}
.testimonial-item blockquote {
  font-size: 1.1rem;
  color: #444;
  margin: 0 0 0.5rem 0;
  font-style: italic;
}
.testimonial-name {
  color: #1d3557;
  font-size: 1rem;
  font-weight: 600;
}

/* Contact CTA */
.contact-cta {
  background: #e63946;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0 2rem 0;
}
.contact-cta h2 {
  margin-bottom: 1.2rem;
  font-size: 2rem;
}
.contact-cta .btn {
  background: #fff;
  color: #e63946;
  font-weight: 700;
  border: none;
  margin-top: 0.5rem;
}
.contact-cta .btn:hover {
  background: #1d3557;
  color: #fff;
}

/* Footer */
.footer-content {
  background: #1d3557;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
}
.footer-contact, .footer-social, .footer-location, .footer-copyright {
  margin-bottom: 0.5rem;
}
.footer-contact a, .footer-social a {
  color: #e63946;
  text-decoration: none;
  margin: 0 0.5rem;
}
.footer-social a:hover {
  text-decoration: underline;
}
.footer-location {
  color: #f1faee;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .specialties-list, .testimonial-list {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Photo Collage Grid for Signature Shots */
.photo-collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 100px);
  gap: 12px;
  grid-template-areas:
    'img1 img1 img2 img3'
    'img1 img1 img4 img5'
    'img1 img1 img4 img5';
  margin-bottom: 1rem;
  justify-items: stretch;
  align-items: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.collage-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.08);
  display: flex;
  aspect-ratio: 1.5/1;
}
.collage-img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  flex: 1 1 auto;
}
.collage-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(230,57,70,0.15);
}
.collage-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.collage-img1 { grid-area: img1; }
.collage-img2 { grid-area: img2; }
.collage-img3 { grid-area: img3; }
.collage-img4 { grid-area: img4; }
.collage-img5 { grid-area: img5; }

@media (max-width: 900px) {
  .photo-collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 120px);
    grid-template-areas:
      'img1 img2'
      'img3 img4'
      'img5 img1'
      'img2 img3'
      'img4 img5';
  }
}
@media (max-width: 600px) {
  .photo-collage-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 140px);
    grid-template-areas:
      'img1'
      'img2'
      'img3'
      'img4'
      'img5';
  }
}

.collage-img-zoom {
  transform: scale(1.25);
  object-position: center;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.specialty-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.08);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.specialty-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(230,57,70,0.13);
}
.specialty-icon {
  display: block;
  margin: 0 auto 1rem auto;
  font-size: 2.5rem;
  color: #e63946;
}
.specialty-card h3 {
  margin-bottom: 0.5rem;
  color: #1d3557;
  font-size: 1.15rem;
  font-weight: 700;
}
.specialty-card p {
  color: #444;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.specialties-creative-bg {
  background: linear-gradient(120deg, #f8f9fa 60%, #ffeaea 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.specialties-headline {
  font-size: 2.3rem;
  color: #e63946;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}
.specialties-subheading {
  color: #1d3557;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.specialty-icon svg {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 2px 8px rgba(230,57,70,0.10));
}
/* Animation for specialties cards */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.specialties-horizontal-scroll {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.specialty-card {
  min-width: 270px;
  max-width: 320px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
@media (max-width: 700px) {
  .specialties-horizontal-scroll {
    gap: 1.2rem;
    padding-bottom: 0.5rem;
  }
  .specialty-card {
    min-width: 80vw;
    max-width: 90vw;
  }
}

.specialties-split-layout {
  background: linear-gradient(120deg, #f8f9fa 60%, #ffeaea 100%);
  padding: 3.5rem 0;
}
.specialties-split-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.specialties-split-left {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 420px;
  padding-right: 1.5rem;
}
.specialties-split-right {
  flex: 2 1 480px;
  min-width: 320px;
}
.specialties-split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.specialty-split-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.08);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
}
.specialty-split-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(230,57,70,0.13);
}
.specialty-split-icon svg {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: #e63946;
  filter: drop-shadow(0 2px 8px rgba(230,57,70,0.10));
}
.specialty-split-card h3 {
  margin-bottom: 0.5rem;
  color: #1d3557;
  font-size: 1.15rem;
  font-weight: 700;
}
.specialty-split-card p {
  color: #444;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .specialties-split-container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 1rem;
  }
  .specialties-split-left, .specialties-split-right {
    max-width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .specialties-split-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .specialties-split-left {
    text-align: center;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .specialty-split-card {
    align-items: center;
    text-align: center;
  }
}

/* What I Offer Section */
.what-i-offer-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}
.what-i-offer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.what-i-offer-left {
  flex: 1 1 320px;
  min-width: 260px;
}
.what-i-offer-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1d3557;
  margin-bottom: 1rem;
  text-align: left;
}
.what-i-offer-left p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
  text-align: left;
}
.what-i-offer-right {
  flex: 2 1 500px;
  min-width: 320px;
}
.what-i-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.offer-card {
  background: #f8f8f8;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer-card:hover {
  box-shadow: 0 6px 32px rgba(29,53,87,0.13);
  transform: translateY(-4px) scale(1.03);
}
.offer-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 3px solid #e63946;
  background: #fff;
}
.offer-card h3 {
  font-size: 1.2rem;
  color: #1d3557;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}
.offer-card p {
  color: #555;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .what-i-offer-container {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .what-i-offer-left, .what-i-offer-right {
    min-width: 0;
  }
  .what-i-offer-left h2, .what-i-offer-left p {
    text-align: center;
  }
}

.what-i-offer-centered {
  flex-direction: column;
  align-items: center;
}
.what-i-offer-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.what-i-offer-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: #1d3557;
  margin-bottom: 1rem;
}
.what-i-offer-header p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
}

.image-band-cta {
  position: relative;
  padding: 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image-band-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.image-band-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: imageBandScroll 30s linear infinite;
}
.image-band-track img {
  height: 320px;
  width: auto;
  min-width: 400px;
  object-fit: cover;
  margin-right: 0;
  filter: brightness(0.7) grayscale(0.1);
  user-select: none;
  pointer-events: none;
}
@keyframes imageBandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.image-band-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(29,53,87,0.45);
  z-index: 2;
}
.cta-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.cta-content h2 {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.cta-content .btn {
  background: #fff;
  color: #e63946;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.cta-content .btn:hover {
  background: #e63946;
  color: #fff;
}
@media (max-width: 700px) {
  .image-band-track img {
    height: 180px;
    min-width: 220px;
  }
  .cta-content {
    min-height: 180px;
  }
}

.modern-footer {
  background: #1d3557;
  color: #e0f2ef;
  padding: 3rem 1rem 1rem 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #f1faee;
}
.footer-tagline {
  font-size: 1rem;
  color: #a8dadc;
  margin-bottom: 1rem;
}
.footer-contact {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
}
.footer-contact i {
  margin-right: 0.5rem;
  color: #e63946;
}
.footer-contact a {
  color: #f1faee;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #e63946;
}
.footer-social {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
}
.footer-social-link {
  display: inline-block;
  transition: transform 0.2s;
}
.footer-social-link:hover {
  transform: scale(1.15) rotate(-8deg);
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}
.footer-bottom {
  text-align: center;
  color: #a8dadc;
  font-size: 1rem;
  margin-top: 2rem;
  border-top: 1px solid #457b9d;
  padding-top: 1rem;
  letter-spacing: 1px;
}
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-brand, .footer-contact, .footer-social {
    align-items: center;
  }
}

.modern-footer {
  background: #1d3557;
  color: #e0f2ef;
  padding: 3rem 1rem 1rem 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 2rem;
}
.footer-col h3 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col.about p {
  color: #b2dfdb;
  font-size: 1rem;
  line-height: 1.7;
}
.footer-col.links ul,
.footer-col.contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col.links ul li,
.footer-col.contact ul li {
  margin-bottom: 0.7rem;
}
.footer-col.links ul li a,
.footer-col.contact ul li a {
  color: #e0f2ef;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col.links ul li a:hover,
.footer-col.contact ul li a:hover {
  color: #e63946;
}
.footer-col.hours p {
  color: #b2dfdb;
  font-size: 1rem;
  line-height: 1.7;
}
.footer-col.contact ul li i {
  color: #4fd1c5;
  margin-right: 0.5rem;
}
.footer-social-row {
  margin-top: 1.2rem;
}
.footer-social-row a {
  display: inline-block;
  margin-right: 0.7rem;
  color: #fff;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  font-size: 1.7rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 2px solid #e0f2ef;
  box-shadow: 0 2px 8px rgba(29,53,87,0.10);
}
.footer-social-row a.footer-facebook { color: #1877f3; }
.footer-social-row a.footer-instagram { color: #e4405f; }
.footer-social-row a.footer-twitter { color: #1da1f2; }
.footer-social-row a.footer-youtube { color: #ff0000; }
.footer-social-row a:hover {
  background: #e63946;
  color: #fff;
  transform: scale(1.12);
  border-color: #e63946;
}

.footer-bottom-bar {
  text-align: center;
  color: #b2dfdb;
  font-size: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #14523d;
  padding-top: 1rem;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-col {
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

.pricing-header {
  text-align: center;
  padding: 4rem 1rem 2.5rem 1rem;
  background: linear-gradient(90deg, #f8f8f8 60%, #e9ecef 100%);
  border-bottom: 2px solid #e63946;
  margin-bottom: 2rem;
}
.pricing-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.7rem;
  color: #1d3557;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}
.pricing-header p {
  color: #e63946;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}
.pricing-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem 0;
}
.pricing-gallery img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(29,53,87,0.10);
  border: 2.5px solid #fff;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-gallery img:hover {
  transform: scale(1.08) rotate(-2deg);
  border-color: #e63946;
}
.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0 2rem 0;
  flex-wrap: wrap;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(29,53,87,0.13);
  padding: 2.7rem 2rem 2.2rem 2rem;
  min-width: 270px;
  max-width: 340px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #e9ecef;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 40px rgba(29,53,87,0.18);
  border-color: #e63946;
}
.pricing-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: #1d3557;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}
.pricing-card .price {
  font-size: 1.7rem;
  color: #e63946;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem 0;
  color: #444;
  font-size: 1.05rem;
  text-align: left;
}
.pricing-card ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.7em;
  position: relative;
}
.pricing-card ul li:before {
  content: '\f030';
  font-family: 'FontAwesome';
  color: #4fd1c5;
  position: absolute;
  left: 0;
  font-size: 1.1em;
}
.pricing-card .btn {
  margin-top: 1rem;
  font-size: 1.08rem;
  padding: 0.7rem 2.2rem;
}
.pricing-card.popular {
  border: 2.5px solid #e63946;
  box-shadow: 0 12px 40px rgba(230,57,70,0.13);
  z-index: 2;
}
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #e63946;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.35em 1.3em;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(230,57,70,0.10);
  z-index: 3;
}
.addons, .included, .faqs, .custom-quote {
  max-width: 700px;
  margin: 2.7rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2.2rem 1.7rem;
  text-align: center;
  border-top: 3px solid #e63946;
}
.addons h3, .included h3, .faqs h3, .custom-quote h3 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.addons ul, .included ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
  font-size: 1.05rem;
}
.addons ul li, .included ul li {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.addons ul li span {
  color: #e63946;
  font-weight: 700;
}
.faqs .faq-item {
  text-align: left;
  margin-bottom: 1.1rem;
  color: #444;
  padding-left: 1.5em;
  position: relative;
}
.faqs .faq-item:before {
  content: '\f059';
  font-family: 'FontAwesome';
  color: #e63946;
  position: absolute;
  left: 0;
  font-size: 1.1em;
}
.custom-quote p {
  color: #555;
  margin-bottom: 1.2rem;
}
.custom-quote .btn {
  margin-top: 0.5rem;
}
.pricing-cta {
  text-align: center;
  margin: 3.2rem 0 2.2rem 0;
}
.pricing-cta h2 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.pricing-cta .btn {
  font-size: 1.15rem;
  padding: 0.8rem 2.5rem;
}
@media (max-width: 900px) {
  .pricing-tiers {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }
  .pricing-gallery {
    flex-direction: column;
    align-items: center;
  }
}

.main-below-navbar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- PRICING PAGE MODERN DESIGN --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

body, html {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
}

.pricing-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/images/Wedding/01.jpg'), url('assets/images/Pre-Wedding/03.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) blur(2px);
  z-index: 1;
  will-change: transform;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 2rem;
  background: rgba(29,53,87,0.25);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(2px);
}
.pricing-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.pricing-hero span {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
}
.hero-cta {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  background: #e63946;
  color: #fff;
  border-radius: 30px;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 12px rgba(230,57,70,0.15);
  transition: background 0.2s;
}
.hero-cta:hover {
  background: #457b9d;
}

.plans-personalities {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem 0 2rem 0;
  flex-wrap: wrap;
}
.plan-card {
  background: linear-gradient(135deg, #fff 60%, #f8f8f8 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(29,53,87,0.13);
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 260px;
  max-width: 320px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
}
.plan-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 40px rgba(29,53,87,0.18);
  border-color: #e63946;
  background: linear-gradient(135deg, #f8f8f8 60%, #e63946 100%);
}
.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px #e63946aa);
}
.plan-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1d3557;
  margin-bottom: 1rem;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  color: #444;
  font-size: 1.05rem;
  text-align: left;
}
.plan-card ul li {
  margin-bottom: 0.7rem;
  padding-left: 1.2em;
  position: relative;
}
.plan-card .plan-price {
  color: #e63946;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.7rem;
  text-align: center;
  padding-left: 0;
}
.plan-card .btn {
  margin-top: 1rem;
  font-size: 1.08rem;
  padding: 0.7rem 2.2rem;
}

.package-selector {
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  text-align: center;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(2px);
}
.package-selector h3 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.selector-options {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.selector-btn {
  background: #f8f8f8;
  color: #1d3557;
  border: 2px solid #e63946;
  border-radius: 20px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.selector-btn:hover, .selector-btn.selected {
  background: #e63946;
  color: #fff;
  border-color: #1d3557;
}
.selector-result {
  font-size: 1.1rem;
  color: #e63946;
  font-weight: 700;
  min-height: 1.5em;
}

.build-your-plan {
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.build-your-plan h3 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
#build-plan-form label {
  display: block;
  margin: 1.2rem 0 0.3rem 0;
  color: #1d3557;
  font-weight: 700;
}
#build-plan-form input[type=range] {
  width: 80%;
  margin-bottom: 0.7rem;
}
.addons-toggles {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}
.addons-toggles label {
  font-weight: 400;
  color: #444;
}
.build-plan-price {
  font-size: 1.2rem;
  color: #e63946;
  font-weight: 700;
  margin-top: 1.2rem;
}

.before-after-carousel {
  max-width: 700px;
  margin: 3rem auto 2rem auto;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.carousel-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.carousel-slide {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.before-img, .after-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.10);
  border: 2px solid #fff;
  transition: transform 0.2s;
}
.arrow {
  font-size: 2rem;
  color: #e63946;
  font-weight: 700;
}
.carousel-caption {
  color: #1d3557;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.testimonials-chat {
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  text-align: center;
}
.testimonials-chat h3 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.chat-bubble {
  background: #fff;
  border-radius: 18px 18px 18px 6px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
  text-align: left;
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid #e63946;
}
.chat-text {
  font-size: 1.08rem;
  color: #222;
}
.chat-meta {
  display: block;
  color: #888;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.booking-calendar {
  max-width: 400px;
  margin: 3rem auto 2rem auto;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.booking-calendar h3 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.calendar-input {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1.5px solid #e63946;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.calendar-info {
  color: #e63946;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.faqs-dropdown {
  max-width: 700px;
  margin: 3rem auto 2rem auto;
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(29,53,87,0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.faqs-dropdown h3 {
  color: #1d3557;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.faq-item {
  margin-bottom: 1rem;
  text-align: left;
}
.faq-question {
  background: #f8f8f8;
  color: #1d3557;
  border: 2px solid #e63946;
  border-radius: 16px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-bottom: 0.3rem;
}
.faq-question.active, .faq-question:hover {
  background: #e63946;
  color: #fff;
  border-color: #1d3557;
}
.faq-answer {
  display: none;
  padding: 0.7rem 1.2rem;
  background: #fff;
  border-radius: 0 0 12px 12px;
  color: #444;
  font-size: 1rem;
  border-left: 3px solid #e63946;
}
.faq-question.active + .faq-answer {
  display: block;
}

.sticky-book-btn {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #e63946;
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 30px;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 24px rgba(230,57,70,0.18);
  z-index: 9999;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.sticky-book-btn:hover {
  background: #1d3557;
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .plans-personalities {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }
}
@media (max-width: 700px) {
  .pricing-hero h1 {
    font-size: 1.5rem;
  }
  .plans-personalities {
    gap: 1.2rem;
  }
  .plan-card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
  .sticky-book-btn {
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
  }
}

.pricing-hero-v2 {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1d3557;
}
.hero-bg-montage {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.montage-img {
  position: absolute;
  width: 40vw;
  max-width: 500px;
  min-width: 220px;
  height: 60vh;
  object-fit: cover;
  opacity: 0.32;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(29,53,87,0.18);
  animation: heroMontageFade 12s infinite alternate;
}
.img1 { left: 10vw; top: 10vh; animation-delay: 0s; }
.img2 { right: 10vw; top: 18vh; animation-delay: 4s; }
.img3 { left: 30vw; bottom: 8vh; animation-delay: 8s; }

@keyframes heroMontageFade {
  0%, 100% { opacity: 0.32; filter: blur(0px);}
  50% { opacity: 0.55; filter: blur(2px);}
}

.hero-glass {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.18);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(29,53,87,0.18);
  backdrop-filter: blur(8px);
  padding: 3rem 2rem 2.5rem 2rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.hero-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  animation: heroIconPulse 2.5s infinite;
}
@keyframes heroIconPulse {
  0%, 100% { transform: scale(1);}
  50% { transform: scale(1.12);}
}
.pricing-hero-v2 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 12px rgba(29,53,87,0.18);
}
.pricing-hero-v2 p {
  color: #f1faee;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-cta {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  background: #e63946;
  color: #fff;
  border-radius: 30px;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 2px 12px rgba(230,57,70,0.15);
  transition: background 0.2s;
}
.hero-cta:hover {
  background: #457b9d;
}
.scroll-down-indicator {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}
.scroll-down-indicator span {
  display: block;
  width: 28px;
  height: 28px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  animation: scrollArrow 1.2s infinite;
  opacity: 0.7;
}
@keyframes scrollArrow {
  0% { transform: translateY(0) rotate(45deg);}
  50% { transform: translateY(10px) rotate(45deg);}
  100% { transform: translateY(0) rotate(45deg);}
}
@media (max-width: 700px) {
  .pricing-hero-v2 {
    min-height: 60vh;
  }
  .hero-glass {
    padding: 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .montage-img {
    width: 70vw;
    min-width: 120px;
    height: 30vh;
  }
}

.pricing-hero-spotlight {
  position: relative;
  min-height: 85vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1d3557;
  margin-top: 0 !important;
}
.hero-bg-spotlight {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('assets/images/Wedding/01.jpg') center/cover no-repeat;
  filter: brightness(0.45) blur(1px);
  z-index: 1;
}
.hero-spotlight-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18) 0%, rgba(29,53,87,0.7) 60%);
  transition: background 0.2s;
}
.hero-content-spotlight {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem 2rem;
}
.shutter-icon {
  margin-bottom: 1.2rem;
  animation: shutterSpin 3s linear infinite;
}
@keyframes shutterSpin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
.hero-typewriter {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  overflow: hidden;
  border-right: .15em solid #fff;
  white-space: nowrap;
  width: 0;
  animation: typing 2.5s steps(30, end) forwards, blink-caret .75s step-end infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #fff; }
}
.hero-fadein {
  opacity: 0;
  animation: fadeInHero 2s 2.5s forwards;
}
@keyframes fadeInHero {
  to { opacity: 1; }
}
.hero-glow {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  background: #e63946;
  color: #fff;
  border-radius: 30px;
  padding: 0.8rem 2.2rem;
  box-shadow: 0 0 16px 2px #e63946cc, 0 2px 12px rgba(230,57,70,0.15);
  transition: background 0.2s, box-shadow 0.2s;
  animation: heroGlowPulse 2s infinite alternate;
}
@keyframes heroGlowPulse {
  from { box-shadow: 0 0 16px 2px #e63946cc, 0 2px 12px rgba(230,57,70,0.15);}
  to { box-shadow: 0 0 32px 8px #e63946cc, 0 2px 24px rgba(230,57,70,0.18);}
}
.hero-glow:hover {
  background: #457b9d;
}
.floating-polaroids {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.polaroid {
  position: absolute;
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  border: 5px solid #fff;
  opacity: 0.92;
  transform: rotate(-8deg);
  animation: floatPolaroid 6s infinite alternate;
  z-index: 5;
}
.pol1 { left: 6vw; top: 12vh; animation-delay: 0s;}
.pol2 { right: 8vw; top: 18vh; animation-delay: 0.5s;}
.pol3 { left: 18vw; bottom: 10vh; animation-delay: 1s;}
.pol4 { right: 18vw; bottom: 8vh; animation-delay: 1.5s;}
.pol5 { left: 40vw; top: 8vh; animation-delay: 2s;}
.pol6 { right: 40vw; top: 24vh; animation-delay: 2.5s;}
.pol7 { left: 10vw; bottom: 30vh; animation-delay: 3s;}
.pol8 { right: 10vw; bottom: 28vh; animation-delay: 3.5s;}
.pol9 { left: 60vw; bottom: 12vh; animation-delay: 4s;}
.pol10 { right: 60vw; top: 12vh; animation-delay: 4.5s;}

.pricing-hero-spotlight h1,
.pricing-hero-spotlight p,
.pricing-hero-spotlight .hero-typewriter,
.pricing-hero-spotlight .hero-fadein {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

@keyframes floatPolaroid {
  0% { transform: translateY(0) rotate(-8deg);}
  100% { transform: translateY(18px) rotate(4deg);}
}
@media (max-width: 700px) {
  .pricing-hero-spotlight {
    min-height: 60vh;
  }
  .hero-content-spotlight {
    padding: 1.5rem 0.5rem;
    max-width: 98vw;
  }
  .polaroid {
    width: 60px;
    height: 44px;
  }
}

.plans-personalities.big-cards {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 4rem 0 2rem 0;
  flex-wrap: wrap;
}
.plan-card {
  background: linear-gradient(135deg, #fff 60%, #f8f8f8 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(29,53,87,0.13);
  padding: 3.2rem 2.2rem 2.2rem 2.2rem;
  min-width: 320px;
  max-width: 400px;
  text-align: left;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.plan-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 40px rgba(29,53,87,0.18);
  border-color: #e63946;
  background: linear-gradient(135deg, #f8f8f8 60%, #e63946 100%);
}
.plan-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px #e63946aa);
  text-align: center;
}
.plan-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1d3557;
  margin-bottom: 0.7rem;
  text-align: center;
}
.plan-price-big {
  font-size: 2.5rem;
  color: #1d3557;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 1px;
}
.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem 0;
  color: #444;
  font-size: 1.1rem;
}
.plan-card ul li {
  margin-bottom: 0.7rem;
  padding-left: 0;
  position: relative;
}
.plan-btn-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1 0 auto;
  margin-top: auto;
}
.plan-btn {
  font-size: 1.15rem;
  padding: 0.9rem 2.5rem;
  border-radius: 30px;
  background: #e63946;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 16px 2px #e63946cc, 0 2px 12px rgba(230,57,70,0.15);
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
.plan-btn:hover {
  background: #1d3557;
  color: #fff;
}
@media (max-width: 900px) {
  .plans-personalities.big-cards {
    flex-direction: column;
    align-items: center;
    gap: 2.2rem;
  }
  .plan-card {
    min-width: 90vw;
    max-width: 98vw;
    padding: 2rem 1rem;
  }
}

.footer-social-row a.footer-youtube {
  color: #ff0000;
  background: #fff;
}
.footer-social-row a.footer-youtube:hover {
  color: #fff !important;
  background: #e63946;
}
.footer-social-row a.footer-youtube:hover .fa-youtube-play {
  color: #fff !important;
}

/* Portfolio Page Styles */
.portfolio-main {
  margin-top: 80px;
}

/* 1. Hero Section */
.portfolio-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('assets/images/Wedding/01.jpg') center/cover no-repeat;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* 2. Category Filters */
.portfolio-filters {
  padding: 3rem 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #e63946;
  background: transparent;
  color: #e63946;
  border-radius: 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #e63946;
  transition: left 0.3s ease;
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

/* 3. Grid Gallery */
.portfolio-gallery {
  padding: 4rem 0;
  background: #fafafa;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  background: #fff;
}

.image-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.image-card:hover .image-overlay {
  opacity: 1;
}

.image-caption {
  color: #fff;
  text-align: left;
}

.image-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.image-caption p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.9;
}

.image-actions {
  display: flex;
  justify-content: flex-end;
}

.lightbox-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #e63946;
}

.lightbox-btn:hover {
  background: #e63946;
  color: #fff;
  transform: scale(1.1);
}

/* 4. Client Favorites */
.client-favorites {
  padding: 6rem 0;
  background: #fff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d3557;
}

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  margin-bottom: 4rem;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.favorite-item {
  position: relative;
}

.favorite-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  background: #fff;
}

.favorite-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.top-pick-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1d3557;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.favorite-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.favorite-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.favorite-card:hover .favorite-overlay {
  transform: translateY(0);
}

.favorite-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.favorite-overlay p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* 5. Instagram Gallery */
.instagram-gallery {
  padding: 6rem 0;
  background: #f8f8f8;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.insta-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

.insta-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

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

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

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

.insta-likes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.insta-likes i {
  color: #ff4757;
  font-size: 1.1rem;
}

.insta-caption {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}

/* 6. Portfolio CTA */
.portfolio-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1d3557, #e63946);
  color: #fff;
  text-align: center;
}

.portfolio-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-cta p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background: #fff;
  color: #e63946;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #e63946;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .masonry-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .favorites-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .instagram-feed {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .filter-tabs {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 700px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .masonry-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .favorites-grid {
    grid-template-columns: 1fr;
  }
  
  .instagram-feed {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .portfolio-cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .instagram-feed {
    grid-template-columns: 1fr;
  }
  
  .filter-tabs {
    flex-direction: column;
    align-items: center;
  }
}

/* Enhanced Portfolio Hero Section */
.portfolio-hero-enhanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Animated Background Elements */
.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 30%;
  animation-delay: 1s;
}

.shape-5 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
  background-size: 50px 50px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Main Hero Content */
.hero-content-enhanced {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: center;
}

.hero-text-section {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.badge-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.hero-title-enhanced {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.title-line {
  display: block;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-line.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 2px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle-enhanced {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero Visual Section */
.hero-visual-section {
  position: relative;
}

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.hero-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.4s both;
}

.hero-img:nth-child(1) { animation-delay: 1.4s; }
.hero-img:nth-child(2) { animation-delay: 1.6s; }
.hero-img:nth-child(3) { animation-delay: 1.8s; }
.hero-img:nth-child(4) { animation-delay: 2s; }

.hero-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-img:hover img {
  transform: scale(1.1);
}

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-img:hover .img-overlay {
  opacity: 1;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  opacity: 0.7;
  animation: fadeInUp 1s ease-out 2.2s both;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: #fff;
  position: relative;
  margin-bottom: 0.5rem;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-10px) rotate(45deg); }
  60% { transform: translateY(-5px) rotate(45deg); }
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-enhanced {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title-enhanced {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-enhanced {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-image-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .hero-img img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-title-enhanced {
    font-size: 2rem;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Professional Portfolio Hero Section */
.portfolio-hero-professional {
  position: relative;
  min-height: 100vh;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Premium Background */
.hero-bg-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

.hero-bg-gradient-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
}

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

/* Left Content */
.hero-content-left {
  color: #fff;
}

.hero-badge-professional {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.badge-icon-wrapper {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: #000;
  font-size: 0.8rem;
}

.hero-title-professional {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.title-word {
  display: block;
  opacity: 0;
  animation: titleReveal 0.8s ease-out forwards;
}

.title-word-1 { animation-delay: 0.2s; }
.title-word-2 { 
  animation-delay: 0.4s;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-word-3 { animation-delay: 0.6s; }

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

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Features Section */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 1s both;
}

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

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

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1rem;
}

.feature-text h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* CTA Buttons */
.hero-cta-professional {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
  transform: translateX(5px);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Right Visual Section */
.hero-content-right {
  position: relative;
}

.hero-gallery-professional {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-main {
  position: relative;
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.4s both;
}

.main-image:hover {
  transform: scale(1.02);
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.image-overlay-main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image:hover .image-overlay-main {
  opacity: 1;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1rem;
  opacity: 0.8;
}

.gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.6s both;
}

.sidebar-image:nth-child(2) { animation-delay: 1.8s; }
.sidebar-image:nth-child(3) { animation-delay: 2s; }

.sidebar-image:hover {
  transform: scale(1.05);
}

.sidebar-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-image:hover img {
  transform: scale(1.1);
}

.image-overlay-side {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-image:hover .image-overlay-side {
  opacity: 1;
}

/* Stats Section */
.hero-stats-professional {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 2.2s both;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator-professional {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInUp 1s ease-out 2.4s both;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #ffd700, transparent);
  margin-bottom: 0.5rem;
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffd700;
  border-bottom: 2px solid #ffd700;
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-10px) rotate(45deg); }
  60% { transform: translateY(-5px) rotate(45deg); }
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container-professional {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-features {
    max-width: 500px;
    margin: 0 auto 3rem auto;
  }
  
  .hero-cta-professional {
    justify-content: center;
  }
  
  .hero-stats-professional {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title-professional {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-professional {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-gallery-professional {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .main-image img {
    height: 300px;
  }
  
  .sidebar-image img {
    height: 100px;
  }
  
  .hero-stats-professional {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title-professional {
    font-size: 2.5rem;
  }
  
  .hero-badge-professional {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .main-image img {
    height: 250px;
  }
}

/* Cohesive Portfolio Hero Section */
.portfolio-hero-cohesive {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1d3557 0%, #e63946 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Dynamic Background */
.hero-bg-cohesive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-gradient-cohesive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29, 53, 87, 0.95) 0%, rgba(230, 57, 70, 0.9) 100%);
}

.hero-bg-pattern-cohesive {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08) 2px, transparent 2px);
  background-size: 60px 60px, 100px 100px;
  animation: patternMoveCohesive 25s linear infinite;
}

@keyframes patternMoveCohesive {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-bg-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape-cohesive {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatCohesive 8s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes floatCohesive {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(180deg); }
}

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

/* Left Content */
.hero-content-left-cohesive {
  color: #fff;
}

.hero-badge-cohesive {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.badge-icon-cohesive {
  width: 28px;
  height: 28px;
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.hero-title-cohesive {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.title-line-cohesive {
  display: block;
  opacity: 0;
  animation: slideInLeftCohesive 0.8s ease-out forwards;
}

.title-line-cohesive:nth-child(1) { animation-delay: 0.2s; }
.title-line-cohesive:nth-child(2) { animation-delay: 0.4s; }
.title-line-cohesive:nth-child(3) { animation-delay: 0.6s; }

.title-line-cohesive.highlight-cohesive {
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-line-cohesive.highlight-cohesive::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  border-radius: 2px;
}

@keyframes slideInLeftCohesive {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-description-cohesive {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* Features Section */
.hero-features-cohesive {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.feature-item-cohesive {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item-cohesive:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon-cohesive {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.feature-text-cohesive h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-text-cohesive p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* CTA Buttons */
.hero-cta-cohesive {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-primary-cohesive {
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  color: #fff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary-cohesive::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-primary-cohesive:hover::before {
  left: 100%;
}

.cta-primary-cohesive:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.cta-arrow-cohesive {
  transition: transform 0.3s ease;
}

.cta-primary-cohesive:hover .cta-arrow-cohesive {
  transform: translateX(5px);
}

.cta-secondary-cohesive {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-secondary-cohesive:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Right Visual Section */
.hero-content-right-cohesive {
  position: relative;
}

.hero-gallery-cohesive {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-main-cohesive {
  position: relative;
}

.main-image-cohesive {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.4s both;
}

.main-image-cohesive:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.main-image-cohesive img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image-cohesive:hover img {
  transform: scale(1.05);
}

.image-overlay-main-cohesive {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(29, 53, 87, 0.9));
  padding: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image-cohesive:hover .image-overlay-main-cohesive {
  opacity: 1;
}

.overlay-content-cohesive h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content-cohesive p {
  font-size: 1rem;
  opacity: 0.9;
}

.gallery-sidebar-cohesive {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-image-cohesive {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.6s both;
}

.sidebar-image-cohesive:nth-child(2) { animation-delay: 1.8s; }
.sidebar-image-cohesive:nth-child(3) { animation-delay: 2s; }

.sidebar-image-cohesive:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.sidebar-image-cohesive img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-image-cohesive:hover img {
  transform: scale(1.1);
}

.image-overlay-side-cohesive {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(29, 53, 87, 0.8));
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-image-cohesive:hover .image-overlay-side-cohesive {
  opacity: 1;
}

/* Stats Section */
.hero-stats-cohesive {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 2.2s both;
}

.stat-card-cohesive {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.stat-card-cohesive:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number-cohesive {
  font-size: 2.2rem;
  font-weight: 900;
  color: #e63946;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-cohesive {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator-cohesive {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1s ease-out 2.4s both;
}

.scroll-line-cohesive {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #e63946, transparent);
  margin-bottom: 0.5rem;
  position: relative;
}

.scroll-line-cohesive::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #e63946;
  border-bottom: 2px solid #e63946;
  transform: rotate(45deg);
  animation: scrollBounceCohesive 2s infinite;
}

@keyframes scrollBounceCohesive {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-10px) rotate(45deg); }
  60% { transform: translateY(-5px) rotate(45deg); }
}

.scroll-text-cohesive {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container-cohesive {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-features-cohesive {
    max-width: 500px;
    margin: 0 auto 3rem auto;
  }
  
  .hero-cta-cohesive {
    justify-content: center;
  }
  
  .hero-stats-cohesive {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-title-cohesive {
    font-size: 3rem;
  }
  
  .hero-description-cohesive {
    font-size: 1.1rem;
  }
  
  .hero-cta-cohesive {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-gallery-cohesive {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .main-image-cohesive img {
    height: 300px;
  }
  
  .sidebar-image-cohesive img {
    height: 100px;
  }
  
  .hero-stats-cohesive {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-card-cohesive {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title-cohesive {
    font-size: 2.5rem;
  }
  
  .hero-badge-cohesive {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
  
  .cta-primary-cohesive,
  .cta-secondary-cohesive {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .main-image-cohesive img {
    height: 250px;
  }
}
  
/* Modern Portfolio Hero Section */
.portfolio-hero-modern {
  position: relative;
  min-height: 100vh;
  background: #0f0f0f;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Animated Background */
.hero-bg-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-layers {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bg-layer-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1d3557 0%, #e63946 50%, #1d3557 100%);
  opacity: 0.8;
}

.bg-layer-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(230, 57, 70, 0.3) 0%, transparent 50%);
  animation: pulseLayer 4s ease-in-out infinite;
}

.bg-layer-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 80%, rgba(29, 53, 87, 0.3) 0%, transparent 50%);
  animation: pulseLayer 4s ease-in-out infinite reverse;
}

@keyframes pulseLayer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 160px 160px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-80px); }
}

/* Main Content */
.hero-content-modern {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  min-height: 100vh;
}

/* Left Panel */
.hero-left-panel {
  padding: 4rem;
  color: #fff;
  position: relative;
}

.hero-intro {
  max-width: 500px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #e63946;
  border-radius: 50%;
  margin-right: 0.8rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.headline-word {
  display: inline;
  opacity: 0;
  animation: slideInUpModern 0.8s ease-out forwards;
  margin-right: 0.5rem;
}

.headline-word:nth-child(1) { animation-delay: 0.2s; }
.headline-word:nth-child(2) { animation-delay: 0.4s; }
.headline-word:nth-child(3) { animation-delay: 0.6s; }
.headline-word:nth-child(4) { animation-delay: 0.8s; }

.headline-word.highlight-word {
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.headline-word.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  border-radius: 2px;
}

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

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 1s both;
}

/* Highlights Section */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.highlight-content h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.highlight-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Action Buttons */
.hero-actions-modern {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1.4s both;
}

.action-btn {
  padding: 1.3rem 2.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: linear-gradient(45deg, #e63946, #ff6b6b);
  color: #fff;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

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

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Right Panel */
.hero-right-panel {
  padding: 4rem;
  position: relative;
}

.hero-gallery-modern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-main {
  position: relative;
}

.main-photo {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.6s both;
}

.main-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.main-photo img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-photo:hover img {
  transform: scale(1.08);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 15, 15, 0.9));
  padding: 2.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-photo:hover .photo-overlay {
  opacity: 1;
}

.overlay-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.grid-photo {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInScale 1s ease-out 1.8s both;
}

.grid-photo:nth-child(2) { animation-delay: 2s; }
.grid-photo:nth-child(3) { animation-delay: 2.2s; }
.grid-photo:nth-child(4) { animation-delay: 2.4s; }

.grid-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.grid-photo img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-photo:hover img {
  transform: scale(1.1);
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 15, 15, 0.8));
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-photo:hover .photo-label {
  opacity: 1;
}

/* Stats Section */
.hero-stats-modern {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 2.6s both;
}

.stat-modern {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.stat-modern:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-number-modern {
  font-size: 2.5rem;
  font-weight: 900;
  color: #e63946;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator-modern {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 1s ease-out 2.8s both;
}

.scroll-dots {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.scroll-text-modern {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-left-panel,
  .hero-right-panel {
    padding: 2rem;
  }
  
  .hero-intro {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-highlights {
    max-width: 600px;
    margin: 0 auto 3rem auto;
  }
  
  .hero-actions-modern {
    justify-content: center;
  }
  
  .hero-stats-modern {
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-actions-modern {
    flex-direction: column;
    align-items: center;
  }
  
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats-modern {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-modern {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  
  .intro-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }
  
  .action-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .main-photo img {
    height: 250px;
  }
  
  .grid-photo img {
    height: 80px;
  }
}
  
/* Contact Page Styles */
.contact-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 50%, #a8dadc 100%);
  overflow: hidden;
}

.hero-bg-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/Wedding/01.jpg') center/cover;
  opacity: 0.3;
}

.hero-overlay-contact {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29,53,87,0.8) 0%, rgba(69,123,157,0.7) 50%, rgba(168,218,220,0.6) 100%);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 40%; right: 25%; animation-delay: 1s; }

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

.hero-content-contact {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-badge-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-title-contact {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  color: #ffffff;
}

.hero-subtitle-contact {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item-contact {
  text-align: center;
}

.stat-number-contact {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stat-number-contact.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-label-contact {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  color: #ffffff;
}

/* Contact Methods Grid */
.contact-methods {
  padding: 5rem 0;
  background: #f8f9fa;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.method-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e63946, #a8dadc);
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #e63946, #a8dadc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon {
  transform: scale(1.1);
}

.method-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1d3557;
}

.method-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #1d3557;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #e63946;
}

.availability {
  font-size: 0.85rem;
  color: #6c757d;
}

.method-actions {
  margin-top: 1.5rem;
}

.method-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.method-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128c7e;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.25);
  transform: scale(1.08);
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
  display: block;
  color: white;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.form-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: #ffffff;
}

.contact-form-modern {
  padding: 3rem 2rem;
}

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

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1d3557;
  margin-bottom: 0.5rem;
}

.form-group label i {
  color: #e63946;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e63946;
  background: white;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #6c757d;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.submit-btn {
  background: linear-gradient(135deg, #e63946, #a8dadc);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230,57,70,0.3);
}

.reset-btn {
  background: #6c757d;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* FAQ Section */
.contact-faq {
  padding: 5rem 0;
  background: #f8f9fa;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 1.1rem;
  color: #6c757d;
}

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

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d3557;
  margin: 0;
}

.faq-question i {
  color: #e63946;
  transition: transform 0.3s ease;
}

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

.faq-answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
  padding: 5rem 0;
  background: white;
}

.proof-header {
  text-align: center;
  margin-bottom: 3rem;
}

.proof-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 1rem;
}

.proof-header p {
  font-size: 1.1rem;
  color: #6c757d;
}

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-style: italic;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
  color: #1d3557;
  margin: 0 0 0.25rem 0;
}

.author-info span {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Final CTA Section */
.contact-cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1d3557, #457b9d);
  color: white;
  text-align: center;
}

.cta-content-final h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content-final p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-btn-primary {
  background: #e63946;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn-primary:hover {
  background: #a4161a;
  transform: translateY(-2px);
  color: white;
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid white;
}

.cta-btn-secondary:hover {
  background: white;
  color: #1d3557;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-contact {
    font-size: 2.5rem;
  }
  
  .hero-stats-contact {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title-contact {
    font-size: 2rem;
  }
  
  .hero-subtitle-contact {
    font-size: 1rem;
  }
  
  .method-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-form-modern {
    padding: 2rem 1.5rem;
  }
  
  .form-header {
    padding: 2rem 1.5rem;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
}
  
/* New Contact Hero Section */
.contact-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 50%, #a8dadc 100%);
}

.hero-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image-montage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.montage-item {
  position: absolute;
  width: 200px;
  height: 150px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: floatMontage 6s ease-in-out infinite;
}

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

.montage-item:hover img {
  transform: scale(1.1);
}

.item-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.item-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.item-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.item-4 {
  bottom: 10%;
  right: 5%;
  animation-delay: 3s;
}

.item-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes floatMontage {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(5px) rotate(-1deg); }
  75% { transform: translateY(-5px) rotate(0.5deg); }
}

.hero-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29,53,87,0.8) 0%, rgba(69,123,157,0.6) 50%, rgba(168,218,220,0.4) 100%);
  z-index: 2;
}

.floating-elements-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

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

.hero-left-panel {
  color: white;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.badge-icon-new {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e63946;
  border-radius: 50%;
  color: white;
  font-size: 12px;
}

.hero-badge-new span {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}

.hero-title-new {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.title-line {
  display: block;
  opacity: 0;
  animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
  background: linear-gradient(135deg, #e63946, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-line.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #e63946, #f4a261);
  border-radius: 2px;
}

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

.hero-subtitle-new {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-features-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

.feature-item-new:nth-child(1) { animation-delay: 1s; }
.feature-item-new:nth-child(2) { animation-delay: 1.2s; }
.feature-item-new:nth-child(3) { animation-delay: 1.4s; }

.feature-icon-new {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e63946;
  border-radius: 50%;
  color: white;
  font-size: 12px;
}

.feature-item-new span {
  color: white;
  font-weight: 500;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.action-btn-primary {
  background: linear-gradient(135deg, #e63946, #f4a261);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(230,57,70,0.3);
}

.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230,57,70,0.4);
  color: white;
}

.action-btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.action-btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  color: white;
}

.hero-right-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-artistic-gallery {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
}

.polaroid-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.polaroid {
  position: absolute;
  background: white;
  padding: 15px 15px 40px;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  z-index: 10;
}

.polaroid img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 3px;
}

.polaroid-caption {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}

.polaroid-1 {
  top: 20%;
  left: 10%;
  animation: floatPolaroid 6s ease-in-out infinite;
}

.polaroid-2 {
  top: 40%;
  right: 15%;
  animation: floatPolaroid 6s ease-in-out infinite 2s;
  transform: rotate(8deg);
}

.polaroid-3 {
  bottom: 25%;
  left: 20%;
  animation: floatPolaroid 6s ease-in-out infinite 4s;
  transform: rotate(-3deg);
}

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

.polaroid-2 {
  transform: rotate(8deg);
}

.polaroid-2:hover {
  transform: rotate(0deg) scale(1.05);
}

.polaroid-3 {
  transform: rotate(-3deg);
}

.polaroid-3:hover {
  transform: rotate(0deg) scale(1.05);
}

.creative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-heart,
.floating-star,
.floating-camera {
  position: absolute;
  font-size: 2rem;
  color: #e63946;
  animation: floatElement 4s ease-in-out infinite;
}

.floating-heart {
  top: 15%;
  right: 25%;
  animation-delay: 0s;
}

.floating-star {
  top: 60%;
  left: 5%;
  animation-delay: 1.5s;
}

.floating-camera {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatElement {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-20px) rotate(10deg); 
    opacity: 1;
  }
}

.artistic-quote {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 100%;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #1d3557;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.quote-author {
  font-size: 0.9rem;
  color: #e63946;
  font-weight: 600;
}

.contact-card-main {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contact-card-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.2);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-card-header i {
  font-size: 1.5rem;
  color: #e63946;
}

.contact-card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.2rem;
  color: #e63946;
  width: 24px;
  text-align: center;
}

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

.contact-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.contact-value {
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

.contact-card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.contact-btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: white;
}

.contact-btn-call {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
}

.contact-btn-call:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  color: white;
}

.contact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-stat-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
}

.contact-stat-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stat-icon-contact {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e63946, #f4a261);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: white;
  font-size: 1rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-contact {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e63946, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-contact {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.gallery-main-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.main-photo-new {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.main-photo-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-photo-new:hover img {
  transform: scale(1.05);
}

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

.main-photo-new:hover .photo-overlay-new {
  transform: translateY(0);
}

.overlay-content-new h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content-new p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

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

.grid-photo-new {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.grid-photo-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-photo-new:hover img {
  transform: scale(1.1);
}

.photo-label-new {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.grid-photo-new:hover .photo-label-new {
  transform: translateY(0);
}

.hero-stats-new {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 4rem;
}

.stat-card-new {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.6s forwards;
}

.stat-card-new:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e63946, #f4a261);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.2rem;
}

.stat-number-new {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #e63946, #f4a261);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-new {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

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

.scroll-indicator-new {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  color: white;
}

.scroll-dots-new {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.dot-new {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

.dot-new:nth-child(2) { animation-delay: 0.3s; }
.dot-new:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.scroll-text-new {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content-new {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-stats-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-new {
    font-size: 1rem;
  }
  
  .hero-actions-new {
    flex-direction: column;
  }
  
  .action-btn-primary,
  .action-btn-secondary {
    text-align: center;
    justify-content: center;
  }
  
  .gallery-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-stats-new {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .montage-item {
    width: 150px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-badge-new {
    padding: 0.5rem 1rem;
  }
  
  .hero-features-new {
    gap: 0.75rem;
  }
  
  .gallery-grid-new {
    grid-template-columns: 1fr;
  }
  
  .main-photo-new {
    height: 250px;
  }
}
  
/* New Contact Methods Grid */
.contact-methods-new {
  padding: 5rem 0;
  background: white;
}

.methods-header {
  text-align: center;
  margin-bottom: 4rem;
  color: #2d3748;
}

.methods-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2d3748, #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.methods-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.methods-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.method-card-new {
  position: relative;
  background: white;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.method-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.method-card-new:hover .card-gradient {
  opacity: 0.15;
}

.phone-gradient {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.whatsapp-gradient {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.location-gradient {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.method-icon-new {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
}

.phone-card-new .method-icon-new {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  box-shadow: 0 10px 30px rgba(255,107,107,0.4);
}

.whatsapp-card-new .method-icon-new {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.email-card-new .method-icon-new {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.location-card-new .method-icon-new {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  box-shadow: 0 10px 30px rgba(240,147,251,0.4);
}

.method-icon-new svg {
  width: 40px;
  height: 40px;
}

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

.method-card-new h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.method-card-new p {
  font-size: 1rem;
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-info-new {
  margin-bottom: 2rem;
}

.contact-link-new {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.contact-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
}

.contact-status {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}

.method-actions-new {
  display: flex;
  gap: 1rem;
}

.btn-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-new svg {
  width: 18px;
  height: 18px;
}

.call-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,107,107,0.4);
  color: white;
}

.whatsapp-btn-new {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.whatsapp-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  color: white;
}

.email-btn-new {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 5px 15px rgba(102,126,234,0.3);
}

.email-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.4);
  color: white;
}

.location-btn-new {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: white;
  box-shadow: 0 5px 15px rgba(240,147,251,0.3);
}

.location-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(240,147,251,0.4);
  color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .methods-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .methods-header h2 {
    font-size: 2.5rem;
  }
  
  .methods-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .method-card-new {
    padding: 2rem 1.5rem;
  }
  
  .method-icon-new {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .method-icon-new svg {
    width: 30px;
    height: 30px;
  }
  
  .method-card-new h3 {
    font-size: 1.5rem;
  }
  
  .method-actions-new {
    flex-direction: column;
  }
  
  .btn-new {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .methods-header h2 {
    font-size: 2rem;
  }
  
  .methods-header p {
    font-size: 1rem;
  }
  
  .method-card-new {
    padding: 1.5rem 1rem;
  }
  
  .contact-number {
    font-size: 1rem;
  }
}
  
/* New Contact Form Section */
.contact-form-section-new {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.form-header-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.header-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2d3748, #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
}

.header-visual {
  position: relative;
  height: 200px;
}

.floating-elements-form {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icon-form {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  animation: floatForm 6s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}

.floating-icon-form:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-icon-form:nth-child(2) {
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}

.floating-icon-form:nth-child(3) {
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes floatForm {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.form-container-new {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.form-left-panel {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.form-info-card {
  background: white;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(102,126,234,0.1);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-header i {
  font-size: 2rem;
  color: #667eea;
}

.info-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-item i {
  color: #48bb78;
  font-size: 1.1rem;
}

.info-item span {
  color: #4a5568;
  font-weight: 500;
}

.info-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  color: white;
}

.info-note i {
  font-size: 1.2rem;
}

.info-note p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-right-panel {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(102,126,234,0.1);
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

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

.form-group-new {
  position: relative;
}

.form-group-new.full-width {
  grid-column: 1 / -1;
}

.input-wrapper,
.textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i,
.textarea-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  z-index: 2;
}

.textarea-wrapper i {
  top: 1.5rem;
  transform: none;
}

.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  font-size: 1rem;
  background: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
}

.textarea-wrapper textarea {
  padding-top: 1.5rem;
  resize: vertical;
  min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.input-wrapper input:focus + label,
.input-wrapper select:focus + label,
.textarea-wrapper textarea:focus + label,
.input-wrapper input:not(:placeholder-shown) + label,
.input-wrapper select:not([value=""]) + label,
.textarea-wrapper textarea:not(:placeholder-shown) + label {
  transform: translateY(-2.5rem) scale(0.85);
  color: #667eea;
}

.input-wrapper input:focus ~ i,
.input-wrapper select:focus ~ i,
.textarea-wrapper textarea:focus ~ i {
  color: #667eea;
}

.input-wrapper label,
.textarea-wrapper label {
  position: absolute;
  left: 3rem;
  top: 1rem;
  color: #a0aec0;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.textarea-wrapper label {
  top: 1.5rem;
}

.checkbox-group-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-label-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #4a5568;
}

.checkbox-label-new input[type="checkbox"] {
  display: none;
}

.form-actions-new {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.submit-btn-new {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 5px 15px rgba(102,126,234,0.3);
  flex: 1;
}

.submit-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}

.reset-btn-new {
  background: #e2e8f0;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.reset-btn-new:hover {
  background: #cbd5e0;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .form-container-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-left-panel {
    position: static;
  }
  
  .form-header-new {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .header-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .form-header-new {
    padding: 0 1rem;
  }
  
  .form-container-new {
    padding: 0 1rem;
  }
  
  .form-right-panel {
    padding: 2rem 1.5rem;
  }
  
  .form-row-new {
    grid-template-columns: 1fr;
  }
  
  .form-actions-new {
    flex-direction: column;
  }
  
  .header-content h2 {
    font-size: 2rem;
  }
  
  .header-visual {
    height: 150px;
  }
  
  .floating-icon-form {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .form-info-card,
  .form-right-panel {
    padding: 1.5rem 1rem;
  }
  
  .header-content h2 {
    font-size: 1.8rem;
  }
  
  .header-content p {
    font-size: 1rem;
  }
}
  
/* Remove white border and make polaroid images fill the frame in pricing hero */
.floating-polaroids .polaroid {
  border: none !important;
  padding: 0 !important;
}
.floating-polaroids .polaroid {
  overflow: hidden;
}
.floating-polaroids .polaroid {
  background: none !important;
}
.floating-polaroids .polaroid {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.floating-polaroids .polaroid {
  width: 140px;
  height: 110px;
}
.floating-polaroids .polaroid {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.floating-polaroids .polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
  