@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --color-brand: #D32F2F;
  --color-brand-hover: #E53935;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-text: #111111;
  --color-text-muted: #666666;
  --color-white: #FFFFFF;
  --color-border: #EEEEEE;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

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

.text-gold {
  color: var(--color-brand);
}

.bg-charcoal {
  background-color: var(--color-bg-alt);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  color: var(--color-brand);
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 3rem;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-brand);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-brand-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  transform: translateY(-3px);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
  color: var(--color-white);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  color: var(--color-text);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-brand);
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero h1 {
  color: var(--color-white);
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.7));
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: #E0E0E0;
  letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-brand);
  z-index: -1;
  border-radius: 5px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid var(--color-brand);
}

.experience-badge .years {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--color-brand);
  line-height: 1;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 40px 30px;
  border-radius: 10px;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--color-brand);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Drone Showcase */
.drone-showcase {
  position: relative;
  padding: 150px 0;
  background-image: url('https://images.unsplash.com/photo-1508614999368-9260051292e5?q=80&w=2000&auto=format&fit=crop');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: var(--color-white);
}

.drone-showcase h2 {
  color: var(--color-white);
}

.drone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
}

.drone-content {
  position: relative;
  z-index: 1;
}

.drone-content h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* Portfolio Masonry */
.portfolio-grid {
  display: column;
  column-count: 3;
  column-gap: 20px;
}

.portfolio-item {
  margin-bottom: 20px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
  color: var(--color-white);
}

.portfolio-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--color-white);
}

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

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

.portfolio-overlay span {
  color: var(--color-brand);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reels Section */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.reel-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--color-border);
  background: #000;
}

.reel-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-brand);
}

.feature-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

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

.testimonial-card {
  background: var(--color-bg);
  padding: 40px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: rgba(211, 47, 47, 0.05);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--color-text-muted);
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-brand);
}

.client-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.client-details span {
  color: var(--color-brand);
  font-size: 0.85rem;
}

/* Booking & Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--color-bg);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--color-brand);
}

textarea.form-control {
  height: 100px;
  resize: none;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(211, 47, 47, 0.1);
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-content p {
  color: var(--color-text-muted);
}

.map-container {
  margin-top: 30px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: var(--color-bg-alt);
  padding: 60px 0 30px;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

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

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: var(--transition);
  background: var(--color-bg);
}

.social-links a:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-white);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  .portfolio-grid {
    column-count: 2;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .drone-content h2 {
    font-size: 2.5rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .portfolio-grid {
    column-count: 1;
  }
}

/* Featured Love Stories */
.featured-stories-section {
    background-color: #FDFBF7;
}
.featured-header {
    margin-bottom: 60px;
}
.featured-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #C5A059;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.featured-subtitle .line {
    width: 40px;
    height: 1px;
    background-color: #C5A059;
}
.featured-title {
    font-size: 3.5rem;
    color: #1A1A1A;
    margin-bottom: 15px;
    font-weight: 400;
}
.cursive-love {
    font-family: 'Great Vibes', cursive;
    color: #C5A059;
    font-size: 4.5rem;
    font-weight: normal;
    padding: 0 10px;
}
.heart-icon {
    color: #C5A059;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.featured-desc {
    color: #666;
    font-size: 1.1rem;
}
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.story-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
}
.story-img {
    position: relative;
    height: 350px;
}
.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.story-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    color: #C5A059;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.story-content {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.story-content h3 {
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 10px;
}
.heart-icon-small {
    color: #C5A059;
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.story-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.btn-story {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #E5D5B5;
    border-radius: 5px;
    color: #C5A059;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: center;
}
.btn-story:hover {
    background: #C5A059;
    color: #FFFFFF;
    border-color: #C5A059;
}
@media (max-width: 768px) {
    .featured-title {
        font-size: 2.5rem;
    }
    .cursive-love {
        font-size: 3.2rem;
    }
}

/* Instagram Carousel Section */
.insta-section {
    background-color: #FDFBF7;
    overflow: hidden;
}
.insta-header {
    margin-bottom: 50px;
}
.insta-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #C5A059;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.insta-subtitle .line {
    width: 40px;
    height: 1px;
    background-color: #C5A059;
}
.insta-title {
    font-size: 3.5rem;
    color: #1A1A1A;
    margin-bottom: 10px;
}
.gold-text {
    color: #C5A059;
}
.cursive-subtitle {
    font-family: 'Great Vibes', cursive;
    color: #444;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.insta-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto 40px auto;
}
.carousel-track {
    display: flex;
    gap: 20px;
    padding: 40px calc(50vw - 140px);
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    box-sizing: border-box;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-card {
    scroll-snap-align: center;
    position: relative;
    flex: 0 0 280px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transform: scale(0.85);
    opacity: 0.6;
}

.carousel-card.active {
    transform: scale(1.1);
    opacity: 1;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.carousel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}
.card-top {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    color: #FFF;
    font-size: 1.2rem;
    z-index: 1;
}
.card-top .duration {
    font-size: 0.9rem;
    font-weight: 600;
}
.card-bottom {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: #FFF;
    z-index: 1;
}
.card-bottom h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.card-bottom p {
    font-size: 0.9rem;
    color: #DDD;
    margin-bottom: 10px;
}
.card-bottom .stats {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #FFF;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    color: #1A1A1A;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.carousel-btn:hover {
    background: #C5A059;
    color: #FFF;
}
.prev-btn { left: 5%; }
.next-btn { right: 5%; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #C5A059;
    width: 20px;
    border-radius: 10px;
}
.insta-banner {
    background: #FFF8E7;
    border-radius: 15px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.banner-icon {
    font-size: 3.5rem;
    color: #C5A059;
}
.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.banner-text span {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 5px;
}
.banner-text strong {
    color: #1A1A1A;
    font-size: 1.2rem;
}
.btn-follow {
    background: #C5A059;
    color: #FFF;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}
.btn-follow:hover {
    background: #A88746;
}
@media (max-width: 992px) {
    .carousel-card { flex: 0 0 220px; height: 380px; }
    .carousel-track { padding: 40px calc(50vw - 110px); }
}
@media (max-width: 768px) {
    .carousel-card { flex: 0 0 200px; height: 350px; }
    .carousel-track { padding: 40px calc(50vw - 100px); }
    .carousel-card.active { transform: scale(1.05); }
    .insta-banner { flex-direction: column; text-align: center; }
}

/* --- New Services Grid Layout --- */
.services-grid-section {
    padding: 80px 0;
    background-color: #FCFBF9; /* Very light warm white */
    position: relative;
    overflow: hidden;
}
/* Leaf corner decorations */
.services-grid-section::before, .services-grid-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.services-grid-section::before {
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23C5A059" d="M10,10 Q50,0 80,40 Q40,60 10,10 Z"/></svg>'); /* Placeholder leaf shape */
    transform: rotate(-30deg) translate(-50px, -50px);
}
.services-grid-section::after {
    top: 0;
    right: 0;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23C5A059" d="M90,10 Q50,0 20,40 Q60,60 90,10 Z"/></svg>'); /* Placeholder leaf shape */
    transform: rotate(30deg) translate(50px, -50px);
}

.services-grid-section .container {
    position: relative;
    z-index: 1;
}

.services-header {
    margin-bottom: 50px;
}
.subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}
.subtitle-wrapper .line {
    width: 40px;
    height: 1px;
    background-color: #C5A059;
}
.subtitle-wrapper .text {
    color: #C5A059;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.camera-icon {
    color: #C5A059;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.main-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: #111;
    margin-bottom: 5px;
}
.text-brand {
    color: #C5A059 !important;
}
.services-header .cursive-subtitle {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .main-title { font-size: 2.5rem; }
}
@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card-new {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-card-new .img-wrapper {
    position: relative;
    height: 180px;
    width: 100%;
}
.service-card-new .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.icon-circle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #FCFBF9;
}
.service-card-new .card-content {
    padding: 40px 20px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-card-new h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card-new p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}
.read-more {
    color: #C5A059;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
    align-self: center;
}
.read-more:hover {
    color: #a38243;
}

.services-cta-banner {
    background-color: #F8F3EA;
    border-radius: 15px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}
.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #C5A059;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #C5A059;
}
.cta-text .small-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.cta-text h4 {
    font-size: 1.6rem;
    color: #222;
    margin: 0;
    font-family: var(--font-heading);
}
.cta-buttons {
    display: flex;
    gap: 15px;
}
.cta-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-primary.cta-btn {
    background-color: #C5A059;
    border: none;
    color: #fff;
    text-decoration: none;
}
.btn-primary.cta-btn:hover {
    background-color: #a38243;
}
.btn-outline.cta-btn {
    border: 1px solid #ddd;
    color: #333;
    background: #fff;
    text-decoration: none;
}
.btn-outline.cta-btn:hover {
    border-color: #C5A059;
    color: #C5A059;
}

@media (max-width: 992px) {
    .services-cta-banner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .cta-left {
        flex-direction: column;
    }
}

/* --- Custom Wedding Story Section --- */
.wedding-story-section {
    background-color: #FAF8F5; /* light cream/beige background */
}

.story-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
    height: 500px;
}

.story-hero-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
}

.story-hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}

.story-quote {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.story-hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.story-video-card {
    border-radius: 15px;
    overflow: hidden;
    height: 50%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.moments-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.moments-grid img:hover {
    transform: scale(1.05);
}

.story-actions {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.story-btn-outline {
    border: 1px solid #C5A059;
    color: #C5A059;
    background: transparent;
}
.story-btn-outline:hover {
    background: #C5A059;
    color: #fff;
}

.story-btn-primary {
    background-color: #C5A059;
    color: #fff;
    border: 1px solid #C5A059;
}
.story-btn-primary:hover {
    background-color: #a38243;
    border-color: #a38243;
}

.story-signature {
    margin-left: 30px;
    text-align: left;
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: #666;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .story-hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .story-hero-main {
        height: 400px;
    }
    .story-hero-side {
        height: 400px;
    }
    .moments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .story-actions {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .story-actions .story-signature {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Why Couples Trust Us Section --- */
.trust-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-brand);
    color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    background: #fff;
    transition: all 0.3s ease;
}
.trust-card:hover .trust-icon {
    background: var(--color-brand);
    color: #fff;
}

.trust-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #222;
}
.trust-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

.gear-box {
    background: #FAF8F5;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gear-header {
    margin-bottom: 20px;
}

.gear-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    color: #444;
}

.gear-main-icon {
    font-size: 7rem;
    color: #333;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.gear-side-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 3rem;
    color: #555;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.gear-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.gear-item {
    flex: 1;
    padding: 0 5px;
}
.gear-item-icon {
    color: var(--color-brand);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.gear-item p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .trust-features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .gear-box {
        margin-top: 30px;
    }
}
@media (max-width: 576px) {
    .trust-features {
        grid-template-columns: 1fr;
    }
    .gear-footer {
        flex-wrap: wrap;
        gap: 20px;
    }
    .gear-item {
        flex: 0 0 40%;
    }
}
