/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700;800&display=swap");

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

/* ===================================== */
/* FIX: Prevent Horizontal Overflow */
/* ===================================== */

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%;
  max-width: 100vw; /* Never exceed viewport width */
}

section {
  max-width: 100vw;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Specific heading weights */
h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

h4,
h5,
h6 {
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%; /* Add this */
  box-sizing: border-box; /* Ensure padding is included in width */
}

/* Fix for large content */
.about-content,
.listings-content,
.carousel-container,
.services-grid,
.contact-content {
  max-width: 100%;
  box-sizing: border-box;
}

/* Fix carousel and thumbnails */
.carousel-container,
.carousel-thumbnails {
  max-width: min(1400px, calc(100vw - 40px));
}

/* Fix search form wrapper */
.search-form-wrapper {
  max-width: min(
    1600px,
    calc(100vw - 40px)
  ); /* Never exceed viewport minus padding */
}

/* ============================================ */
/* HEADER / NAVIGATION */
/* ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  padding: 1.5rem 0;
  transition: padding 0.4s ease;
}

header.scrolled .navbar {
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

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

/* Desktop Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

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

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

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

/* Call Button - Same as Contact Button but Gold Color */
.nav-call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: #c9a961;
  color: #fff;
  border: 2px solid #c9a961;
  text-decoration: none;
  border-radius: 0; /* Rectangle */
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Circle Fill Animation on Hover */
.nav-call-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.nav-call-button:hover::before {
  width: 400px;
  height: 400px;
}

.nav-call-button:hover {
  border-color: #c9a961;
  transform: translateY(-2px);
  background: transparent;
  color: #c9a961;
}

.nav-call-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.nav-call-button:hover svg {
  transform: scale(1.1);
}
.cta-button {
  padding: 1rem 2rem;
  background: #fff;
  color: #667eea;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle - Perfect X with 4 Lines */
.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu-toggle .line {
  position: absolute;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu-toggle .line-1 {
  top: 6px;
}

.mobile-menu-toggle .line-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle .line-3 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-toggle .line-4 {
  bottom: 6px;
}

/* Active State - Perfect X */
.mobile-menu-toggle.active .line-1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-toggle.active .line-2 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.mobile-menu-toggle.active .line-3 {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.mobile-menu-toggle.active .line-4 {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* Mobile Menu Overlay - Full Width */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Header - HIDE CLOSE BUTTON */
.mobile-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  height: 45px;
  filter: brightness(0) invert(1);
}

/* HIDE the X button in menu header */
.mobile-close {
  display: none;
}

.mobile-nav-links {
  list-style: none;
  padding: 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links li a {
  display: block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.2rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-links li a::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #c9a961;
  transition: width 0.3s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
  color: #c9a961;
  padding-left: 1rem;
}

.mobile-nav-links li a:hover::before,
.mobile-nav-links li a.active::before {
  width: 30px;
}

.mobile-call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem;
  padding: 1.2rem 2rem;
  background: #c9a961;
  color: #fff;
  text-decoration: none;
  /* border-radius: 50px; */
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.mobile-call-button:hover {
  background: #b08f4a;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.5);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: -1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 2rem;
  margin-top: 60px;
  animation: fadeInUp 1s ease;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 169, 97, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(201, 169, 97, 0.4);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease 0.2s backwards;
}

.badge-icon {
  font-size: 1.3rem;
}

.badge-text {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a961;
}

/* Hero Title */
.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-name {
  display: block;
  font-size: 5.5rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease 0.4s backwards;
  background: linear-gradient(135deg, #fff 0%, #c9a961 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-company {
  display: block;
  font-size: 1.8rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.6s backwards;
}

/* Hero Tagline */
.hero-tagline {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  margin-top: -1.5rem;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.8s backwards;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 1s backwards;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-size: 2.8rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  color: #c9a961;
  line-height: 1;
}

.stat-label-gallery {
  font-size: 0.85rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

/* Hero CTA Buttons - Rectangular */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1s ease 1.2s backwards;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.3rem 5rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  /* border-radius: 8px; */
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: #c9a961;
  color: #fff;
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
  background: #b08f4a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}
/* Secondary Button - Same as Contact Button (Transparent with Circle Fill) */
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
}

/* Circle Fill Animation on Hover */
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-secondary:hover {
  color: #1a1a1a;
  border-color: #fff;
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator:hover {
  color: #c9a961;
}

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

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

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

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .nav-links {
    gap: 2rem;
  }

  .title-name {
    font-size: 4.5rem;
  }

  .title-company {
    font-size: 1.6rem;
  }

  .hero-content {
    max-width: 1000px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .nav-links {
    gap: 1.8rem;
  }

  .nav-links li a {
    font-size: 0.9rem;
  }

  .title-name {
    font-size: 4rem;
  }

  .hero-stats {
    gap: 2.5rem;
  }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }

  .nav-links li a {
    font-size: 0.85rem;
  }

  .nav-call-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .title-name {
    font-size: 3.5rem;
  }

  .title-company {
    font-size: 1.4rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-background {
    background-attachment: scroll;
  }
}

/* Tablet Portrait - 900px */
@media (max-width: 900px) {
  .nav-links,
  .nav-call-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-wrapper {
    gap: 1rem;
  }

  .title-name {
    font-size: 3rem;
  }

  .title-company {
    font-size: 1.2rem;
  }
}

/* Mobile Landscape - 768px */
@media (max-width: 768px) {
  .navbar {
    padding: 1.2rem 0;
  }

  header.scrolled .navbar {
    padding: 0.8rem 0;
  }

  .logo-img {
    height: 55px;
  }

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

  .hero-content {
    padding: 1.5rem;
    margin-top: 80px;
  }

  .hero-badge {
    padding: 0.7rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .badge-text {
    font-size: 0.85rem;
  }

  .badge-icon {
    font-size: 1.1rem;
  }

  .title-name {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .title-company {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-divider {
    height: 40px;
  }

  .hero-cta {
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1.2rem 2.2rem;
    font-size: 1rem;
  }

  .scroll-indicator {
    bottom: 2rem;
    font-size: 0.75rem;
  }

  .mobile-menu {
    max-width: 320px;
  }
}

/* Mobile Portrait - 600px */
@media (max-width: 600px) {
  .hero-content {
    padding: 1.2rem;
  }

  .hero-badge {
    padding: 0.6rem 1.2rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }

  .title-name {
    font-size: 2.2rem;
  }

  .title-company {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 1.1rem 2rem;
    font-size: 0.95rem;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .logo-img {
    height: 50px;
  }

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

  .mobile-menu-toggle {
    width: 28px;
    height: 28px;
  }

  .mobile-menu-toggle .line {
    width: 24px;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
  }

  .badge-icon {
    font-size: 1rem;
  }

  .badge-text {
    font-size: 0.7rem;
  }

  .title-name {
    font-size: 2.3rem;
  }

  .title-company {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.8rem;
    font-size: 0.9rem;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .mobile-menu {
    max-width: 100%;
  }
}

/* Extra Small Mobile - 375px */
@media (max-width: 375px) {
  .title-name {
    font-size: 2.2rem;
  }

  .title-company {
    font-size: 0.85rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* About/Stats Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(245, 232, 206, 0.3) 100%
  );
  position: relative;
}

/* About Content */
.about-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* Section Header - Full Width Block */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.subtitle {
  display: block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 3rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 auto 1.5rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c9a961, #b08f4a);
  border-radius: 0; /* Remove border radius */
  margin: 0 auto;
}
/* Two Column Layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

/* Left Side - Image with Accents */
.about-image {
  width: 100%;
  height: 100%;
  overflow: visible; /* Changed to visible for accents */
  border-radius: 0;
  position: relative;
}

/* Gold Border Accent - Top Left */
.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  border-top: 4px solid #c9a961;
  border-left: 4px solid #c9a961;
  z-index: 1;
  opacity: 0;
  animation: fadeInAccent 1s ease forwards;
  animation-delay: 0.5s;
}

/* Gold Border Accent - Bottom Right */
.about-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-bottom: 4px solid #b08f4a;
  border-right: 4px solid #b08f4a;
  z-index: 1;
  opacity: 0;
  animation: fadeInAccent 1s ease forwards;
  animation-delay: 0.7s;
}

/* Image Container with Shadow */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 0;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInImage 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* Decorative Background Shape */
.about-image-wrapper {
  position: relative;
}

/* Alternative: Add wrapper in HTML for additional accent */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  right: -30px;
  bottom: -30px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.1),
    rgba(176, 143, 74, 0.1)
  );
  z-index: -1;
}

/* Animations */
@keyframes fadeInAccent {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Large Desktop */
@media (max-width: 1400px) {
  .about-image::before,
  .about-image::after {
    width: 120px;
    height: 120px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .about-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
  }

  .about-image::before,
  .about-image::after {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }

  .about-image::before {
    top: -15px;
    left: -15px;
  }

  .about-image::after {
    bottom: -15px;
    right: -15px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-image::before,
  .about-image::after {
    width: 80px;
    height: 80px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-image {
    max-width: 400px;
  }

  .about-image img {
    aspect-ratio: 1/1;
  }

  .about-image::before,
  .about-image::after {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }

  .about-image::before {
    top: -10px;
    left: -10px;
  }

  .about-image::after {
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .about-image {
    max-width: 100%;
  }

  .about-image::before,
  .about-image::after {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }

  .about-image::before {
    top: -8px;
    left: -8px;
  }

  .about-image::after {
    bottom: -8px;
    right: -8px;
  }
}

/* Right Side - Content */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text h3 {
  font-size: 2.5rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #c9a961;
  margin: 0;
  line-height: 1.2;
}

/* About Description */
.about-description {
  font-size: 1.15rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0 2rem 0;
  border-top: 2px solid rgba(201, 169, 97, 0.2);
  border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.stat-number {
  font-size: 3rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #c9a961;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 97, 0.3);
}

/* Animations */
.about-content {
  animation: fadeInUp 0.8s ease;
}

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

/* Large Desktop */
@media (max-width: 1400px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .about-layout {
    gap: 4rem;
  }

  .about-text h3 {
    font-size: 2.2rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .about-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .about {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .about-description {
    font-size: 1.05rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 0 2rem 0;
  }

  .hero-stat {
    align-items: center;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-layout {
    gap: 2.5rem;
  }

  .about-image {
    max-width: 400px;
  }

  .about-image img {
    aspect-ratio: 1/1;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 2rem;
    padding: 1.5rem 0 1.5rem 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.7rem; /* Smaller for mobile to fit in one row */
    white-space: nowrap; /* Prevent wrapping */
  }
}

@media (max-width: 480px) {
  .about {
    padding: 2.5rem 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .about-image {
    max-width: 100%;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0 1.5rem 0;
  }

  .hero-stats {
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .hero-stat {
    width: 100%;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.75rem;
    white-space: normal; /* Allow wrapping on very small screens */
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* Listings Search Section */
.listings-search {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background Image */
.listings-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-search.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

/* Overlay */
.listings-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(26, 26, 26, 0.75) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: -1;
}

/* Listings Content */
.listings-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Section Header */
.listings-search .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.listings-search .subtitle {
  display: inline-block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.listings-search h2 {
  font-size: 3.5rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description-listings {
  font-size: 1.15rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

/* Search Form Wrapper - Modern, No Border Radius */
.search-form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3rem;
  border-radius: 0; /* Remove border radius */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Search Form */
.search-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Form Rows */
.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-row:first-of-type {
  grid-template-columns: repeat(3, 1fr);
}

.form-row:last-of-type {
  grid-template-columns: repeat(4, 1fr);
}

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-icon {
  color: #c9a961;
  flex-shrink: 0;
}

.form-group input,
.form-group select {
  padding: 1rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0; /* Remove border radius */
  font-size: 1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  color: #333;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #c9a961;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.form-group input::placeholder {
  color: #999;
}

/* Search Button - Modern Transparent with Circle Fill Animation */
.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.3rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0; /* Rectangle */
  font-size: 1.1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Circle Fill Animation on Hover */
.search-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #c9a961;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.search-button:hover::before {
  width: 400px;
  height: 400px;
}

.search-button:hover {
  color: #fff;
  border-color: #c9a961;
  transform: translateY(-2px);
}

.search-button:active {
  transform: translateY(0);
}

.button-icon {
  transition: transform 0.3s ease;
}

.search-button:hover .button-icon {
  transform: rotate(90deg);
}

/* Animations */
.listings-content {
  animation: fadeInUp 0.8s ease;
}

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

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */

/* Extra Large Desktop - 1600px+ */
@media (min-width: 1600px) {
  .form-row:first-of-type {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row:last-of-type {
    grid-template-columns: repeat(4, 1fr) auto;
  }
}

/* Large Desktop - 1400px to 1599px */
@media (max-width: 1599px) {
  .listings-search h2 {
    font-size: 3.2rem;
  }

  .search-form-wrapper {
    max-width: 1400px;
    padding: 2.8rem;
  }

  .form-row:first-of-type {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row:last-of-type {
    grid-template-columns: repeat(4, 1fr) auto;
  }
}

/* Desktop - 1200px to 1399px */
@media (max-width: 1399px) {
  .listings-search h2 {
    font-size: 3rem;
  }

  .search-form-wrapper {
    max-width: 1200px;
    padding: 2.5rem;
  }

  .form-row:first-of-type {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-button {
    grid-column: 1 / -1;
  }
}

/* Medium Desktop - 1024px to 1199px */
@media (max-width: 1199px) {
  .search-form-wrapper {
    max-width: 1100px;
  }

  .form-row:first-of-type,
  .form-row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-button {
    grid-column: 1 / -1;
  }
}

/* Tablet Landscape - 900px to 1023px */
@media (max-width: 1023px) {
  .listings-search {
    padding: 6rem 0;
  }

  .listings-background {
    background-attachment: scroll;
  }

  .listings-search h2 {
    font-size: 2.5rem;
  }

  .section-description-listings {
    font-size: 1.05rem;
  }

  .search-form-wrapper {
    padding: 2.5rem;
    max-width: 900px;
  }

  .form-row:first-of-type,
  .form-row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .search-button {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    grid-column: 1 / -1;
  }
}

/* Tablet Portrait - 768px to 899px */
@media (max-width: 899px) {
  .listings-search {
    padding: 5rem 0;
  }

  .listings-search h2 {
    font-size: 2.2rem;
  }

  .search-form-wrapper {
    padding: 2rem;
    max-width: 700px;
  }

  .search-form {
    gap: 1.5rem;
  }

  .form-row:first-of-type,
  .form-row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Mobile Landscape - 600px to 767px */
@media (max-width: 767px) {
  .listings-search {
    padding: 4rem 0;
    min-height: auto;
  }

  .listings-search .section-header {
    margin-bottom: 3rem;
  }

  .listings-search h2 {
    font-size: 2rem;
  }

  .section-description-listings {
    font-size: 1rem;
  }

  .search-form-wrapper {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .search-form {
    gap: 1.2rem;
  }

  .form-row:first-of-type,
  .form-row:last-of-type {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .search-button {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    grid-column: 1 / -1;
  }
}

/* Mobile Portrait - 480px to 599px */
@media (max-width: 599px) {
  .listings-search {
    padding: 3.5rem 0;
  }

  .listings-search h2 {
    font-size: 1.8rem;
  }

  .search-form-wrapper {
    padding: 1.8rem;
  }
}

/* Small Mobile - 320px to 479px */
@media (max-width: 479px) {
  .listings-search {
    padding: 3rem 0;
  }

  .listings-search .subtitle {
    font-size: 0.85rem;
  }

  .listings-search h2 {
    font-size: 1.6rem;
  }

  .section-description-listings {
    font-size: 0.95rem;
  }

  .search-form-wrapper {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
  }

  .search-form {
    gap: 1rem;
  }

  .form-row:first-of-type,
  .form-row:last-of-type {
    gap: 1rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.9rem;
    padding: 0.8rem 0.9rem;
  }

  .search-button {
    padding: 1.1rem 1.3rem;
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile - 320px */
@media (max-width: 374px) {
  .listings-search h2 {
    font-size: 1.5rem;
  }

  .search-form-wrapper {
    padding: 1.2rem;
  }

  .form-group label {
    font-size: 0.7rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.85rem;
    padding: 0.75rem 0.85rem;
  }

  .search-button {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Photo Gallery - Modern, No Border Radius */
.gallery {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Gallery Background */
.gallery-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  z-index: -2;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(201, 169, 97, 0.1),
      transparent 50%
    ),
    radial-gradient(circle at 70% 50%, rgba(176, 143, 74, 0.1), transparent 50%);
  z-index: -1;
}

/* Section Header */
.gallery .section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery .subtitle {
  display: inline-block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.gallery h2 {
  font-size: 3rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gallery .section-description {
  font-size: 1.15rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

/* Carousel Track Container - No Border Radius */
.carousel-track-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 0; /* Remove border radius */
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  will-change: transform;
}

/* Individual Slide */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Overlay Gradients on Sides */
.carousel-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay-left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.overlay-right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
}

/* Image Counter */
.image-counter {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 1rem 1.8rem;
  border-radius: 0; /* Remove border radius */
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  z-index: 3;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(201, 169, 97, 0.3);
}

.current-index {
  color: #c9a961;
  font-weight: 700;
  font-size: 1.5rem;
}

.counter-divider {
  color: rgba(255, 255, 255, 0.5);
}

.total-images {
  color: rgba(255, 255, 255, 0.7);
}

/* Carousel Arrows - Modern Square */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1); /* transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3); /* optional glass edge */
  width: 60px;
  height: 60px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
  z-index: 10;
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.carousel-arrow:hover {
  background: rgba(201, 169, 97, 0.18);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.carousel-arrow:hover svg {
  transform: scale(1.2);
}

/* Thumbnails Row */
.carousel-thumbnails {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 1rem 0;
}

.thumbnails-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  animation: fadeIn 0.6s ease;
}

.thumbnail-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0; /* Remove border radius */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 3px solid transparent;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 1;
}

.thumbnail-number {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.thumbnail-item.active {
  border-color: #c9a961;
  box-shadow: 0 10px 40px rgba(201, 169, 97, 0.5);
  transform: scale(1.05);
}

.thumbnail-item.active .thumbnail-overlay {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.3),
    rgba(176, 143, 74, 0.3)
  );
}

.thumbnail-item.active .thumbnail-number {
  color: #fff;
  font-size: 1.8rem;
}

.thumbnail-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 169, 97, 0.5);
}

.thumbnail-item:hover .thumbnail-overlay {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.3),
    rgba(176, 143, 74, 0.3)
  );
}

.thumbnail-item:hover .thumbnail-number {
  color: #fff;
  transform: scale(1.1);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thumbnail-item:hover img {
  transform: scale(1.15);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Large Desktop */
@media (max-width: 1400px) {
  .gallery h2 {
    font-size: 2.5rem;
  }

  .carousel-track-container {
    height: 550px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .gallery {
    padding: 4rem 0;
  }

  .gallery h2 {
    font-size: 2.2rem;
  }

  .carousel-track-container {
    height: 500px;
  }

  .carousel-arrow {
    width: 55px;
    height: 55px;
  }

  .carousel-prev {
    left: 20px;
  }

  .carousel-next {
    right: 20px;
  }

  .carousel-overlay {
    width: 150px;
  }

  .thumbnails-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery {
    padding: 3rem 0;
  }

  .gallery .section-header {
    margin-bottom: 3rem;
  }

  .gallery h2 {
    font-size: 2rem;
  }

  .gallery .section-description {
    font-size: 1rem;
  }

  .carousel-track-container {
    height: 400px;
  }

  .carousel-arrow {
    width: 50px;
    height: 50px;
  }

  .carousel-prev {
    left: 15px;
  }

  .carousel-next {
    right: 15px;
  }

  .carousel-arrow svg {
    width: 24px;
    height: 24px;
  }

  .carousel-overlay {
    width: 100px;
  }

  .image-counter {
    top: 20px;
    right: 20px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .current-index {
    font-size: 1.3rem;
  }

  .thumbnails-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.6rem;
  }

  .thumbnail-item {
    border-width: 2px;
  }

  .thumbnail-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .carousel-track-container {
    height: 300px;
  }

  .carousel-arrow {
    width: 45px;
    height: 45px;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }

  .carousel-overlay {
    width: 60px;
  }

  .image-counter {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .current-index {
    font-size: 1.1rem;
  }

  .thumbnails-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .thumbnail-number {
    font-size: 1rem;
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: #f5e8ce4d;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.services::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 143, 74, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.services .section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.services .subtitle {
  display: inline-block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.services h2 {
  font-size: 3rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.15rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #555;
  line-height: 1.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0; /* No gap - dividers instead */
  position: relative;
  z-index: 1;
  margin-top: -2rem;
}

/* Service Card - No Card, No Border Radius */
.service-card {
  background: transparent;
  border-radius: 0; /* Remove border radius */
  overflow: visible;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  border-right: 1px solid rgba(201, 169, 97, 0.2);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  position: relative;
}

/* Remove right border on last item in row */
.service-card:nth-child(3n) {
  border-right: none;
}

/* Hover Effect - Subtle Background */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.03),
    rgba(176, 143, 74, 0.03)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Service Image - No Border Radius */
.service-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0; /* Remove border radius */
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.service-card:hover .service-image {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

/* Service Content */
.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.8rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 1rem;
}

/* Underline Animation on Heading */
.service-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a961, #b08f4a);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-content h3::after {
  width: 60px;
}

.service-content > p {
  font-size: 1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

/* Service Features */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInLeft 0.5s ease forwards;
}

/* Staggered Animation for List Items */
.service-features li:nth-child(1) {
  animation-delay: 0.1s;
}

.service-features li:nth-child(2) {
  animation-delay: 0.2s;
}

.service-features li:nth-child(3) {
  animation-delay: 0.3s;
}

.service-features li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.service-card:hover .check-icon {
  transform: scale(1.2);
}

/* Scroll Animation for Cards */
.service-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

/* Large Desktop */
@media (max-width: 1400px) {
  .services h2 {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 2.5rem 1.8rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .services {
    padding: 4rem 0;
  }

  .services .section-header {
    margin-bottom: 4rem;
  }

  .services h2 {
    font-size: 2.2rem;
  }

  .section-intro {
    font-size: 1.05rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  /* Adjust borders for 2 columns */
  .service-card:nth-child(3n) {
    border-right: 1px solid rgba(201, 169, 97, 0.2);
  }

  .service-card:nth-child(2n) {
    border-right: none;
  }

  .service-card {
    padding: 2.5rem 2rem;
  }

  .service-content h3 {
    font-size: 1.6rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }

  .services .section-header {
    margin-bottom: 3rem;
  }

  .services h2 {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1rem;
  }

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

  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding: 2.5rem 1.5rem;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-image {
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-content > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .service-features {
    gap: 0.8rem;
    padding-top: 1.2rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 2.5rem 0;
  }

  .services h2 {
    font-size: 1.8rem;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 2rem 1.2rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content > p {
    font-size: 0.9rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }
}

/* Services CTA with Image Background */
.services-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 5rem 3rem;
  /* border-radius: 20px; */
  overflow: hidden;
  min-height: 350px;
  flex-wrap: wrap;
}

/* Background Image */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/villa.webp"); /* Change to your image */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

/* Overlay for Better Text Readability */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(26, 26, 26, 0.7) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -1;
}

/* CTA Wrapper */
.cta-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  flex-wrap: wrap;
}

/* CTA Content */
.cta-content {
  flex: 1;
  min-width: 300px;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.2rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.7;
}

/* CTA Button */
.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  /* background: linear-gradient(135deg, #c9a961, #b08f4a); */
  color: #fff;
  border: 2px solid rgba(255, 255, 255);
  text-decoration: none;
  /* border-radius: 12px; */
  font-size: 1.2rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
  /* box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5); */
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  /* box-shadow: 0 15px 40px rgba(201, 169, 97, 0.6);
  background: linear-gradient(135deg, #b08f4a, #9a7a3a); */
}

.cta-button-large svg {
  transition: transform 0.3s ease;
}

.cta-button-large:hover svg {
  transform: translateX(5px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .services-cta {
    padding: 4rem 2.5rem;
    min-height: 300px;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0 2rem 0;
  }

  .cta-content h3 {
    font-size: 2.2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
  }

  .cta-button-large {
    padding: 1.3rem 2.5rem;
    font-size: 1.1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services-cta {
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    text-align: center;
    min-height: auto;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2rem 0 2rem 0;
  }

  .cta-content {
    min-width: 0;
  }

  .cta-content h3 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.05rem;
  }

  .cta-button-large {
    width: 100%;
    justify-content: center;
    padding: 1.3rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-cta {
    padding: 2.5rem 1.5rem;
  }

  .cta-content h3 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-button-large {
    padding: 1.2rem 1.8rem;
    font-size: 0.95rem;
  }

  .service-card {
    padding: 3rem 0;
  }
}

/* Animations */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

/* Large Desktop */
@media (max-width: 1400px) {
  .services h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    gap: 2.5rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .services {
    padding: 4rem 0;
  }

  .services .section-header {
    margin-bottom: 4rem;
  }

  .services h2 {
    font-size: 2.2rem;
  }

  .section-intro {
    font-size: 1.05rem;
  }

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

  /* .service-content {
    padding: 2rem;
  } */

  .service-content h3 {
    font-size: 1.6rem;
  }

  .services-cta {
    padding: 2.5rem;
    gap: 2rem;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }

  .services .section-header {
    margin-bottom: 3rem;
  }

  .services h2 {
    font-size: 2rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .service-image {
    aspect-ratio: 16/9;
  }

  .service-badge {
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
  }

  .service-badge svg {
    width: 28px;
    height: 28px;
  }

  /* .service-content {
    padding: 1.8rem;
  } */

  .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-content > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .service-features {
    gap: 0.8rem;
  }

  .service-features li {
    font-size: 0.9rem;
  }

  .services-cta {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    text-align: center;
  }

  .cta-content {
    min-width: 0;
  }

  .cta-content h3 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-button-large {
    width: 100%;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.8rem;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content > p {
    font-size: 0.9rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }

  .cta-content h3 {
    font-size: 1.4rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }
}

/* Trusted Logos Section */
.trusted-logos {
  padding: 3rem 0;
  background: #fff;
  /* border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
  overflow: hidden;
  position: relative;
}

.logos-title {
  text-align: center;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInDown 0.8s ease;
}

/* Logos Track Container */
.logos-track-container {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

/* Fade Effect on Edges */
.logos-track-container::before,
.logos-track-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-track-container::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.logos-track-container::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Logos Track - Horizontal Scroll */
.logos-track {
  display: flex;
  gap: 4rem;
  animation: scrollLogos 30s linear infinite;
  width: fit-content;
}

/* Pause animation on hover */
.logos-track:hover {
  animation-play-state: paused;
}

/* Individual Logo Item */
.logo-item {
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.6);
}

.logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.logo-item img {
  max-height: 100%;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

/* Scroll Animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%); /* Move by 1/3 since we have 3 sets */
  }
}

/* Alternative: Bounce Animation on Scroll */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .logos-title {
    font-size: 1.2rem;
  }

  .logo-item {
    height: 70px;
    gap: 3rem;
  }

  .logo-item img {
    max-width: 180px;
  }

  .logos-track {
    gap: 3rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trusted-logos {
    padding: 2rem 0;
  }

  .logos-title {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .logo-item {
    height: 60px;
  }

  .logo-item img {
    max-width: 150px;
  }

  .logos-track {
    gap: 2.5rem;
    animation: scrollLogos 20s linear infinite;
  }

  .logos-track-container::before,
  .logos-track-container::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .logo-item {
    height: 50px;
  }

  .logo-item img {
    max-width: 120px;
  }

  .logos-track {
    gap: 2rem;
  }
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #fff;
}

/* Section Header */
.contact .section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact .subtitle {
  display: inline-block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.contact h2 {
  font-size: 3rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.15rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #555;
  line-height: 1.7;
}

/* Contact Content Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Contact Info List */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #c9a961;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: #b08f4a;
  transform: scale(1.1);
}

.info-content {
  flex: 1;
}

.info-content h4 {
  font-size: 1.2rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.info-link {
  display: block;
  font-size: 1.05rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  transition: color 0.3s;
}

.info-link:hover {
  color: #c9a961;
}

.info-note {
  font-size: 0.9rem;
  color: #666;
  font-family: "Source Sans 3", Arial, sans-serif;
  margin: 0;
  line-height: 1.5;
}

/* Map Container - Modern, No Border Radius, Clickable */
.map-container {
  position: relative;
  height: 400px;
  border-radius: 0; /* Remove border radius */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.map-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Map Overlay - Shows on Hover */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(201, 169, 97, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-overlay-text {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Social Media */
.social-media {
  padding-top: 2.5rem;
  border-top: 1px solid #e5e5e5;
}

.social-media h4 {
  font-size: 1.2rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
  background: #c9a961;
}

.social-link:hover {
  transform: translateY(-5px);
  background: #b08f4a;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

/* Contact Form Section - Modern, No Border Radius */
.contact-form-section {
  background: rgba(249, 249, 249, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 0; /* Remove border radius */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
}

.form-header p {
  font-size: 1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #666;
  margin: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form label {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem 1.2rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0; /* Remove border radius */
  font-size: 1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9a961;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit Button - Modern Transparent Rectangle */
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.3rem 2rem;
  background: #c9a961;
  color: #fff;
  border: 2px solid #c9a961;
  border-radius: 0; /* Rectangle */
  font-size: 1.1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

/* Hover Animation - Fill Effect */
.submit-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.submit-button:hover::before {
  width: 400px;
  height: 400px;
}

.submit-button:hover {
  color: #c9a961;
  border-color: #c9a961;
  transform: translateY(-2px);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button svg {
  transition: transform 0.3s ease;
}

.submit-button:hover svg {
  transform: rotate(45deg);
}

/* reCAPTCHA Note */
.recaptcha-note {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  line-height: 1.6;
  margin-top: 1rem;
}

.recaptcha-note a {
  color: #c9a961;
  text-decoration: none;
}

.recaptcha-note a:hover {
  text-decoration: underline;
}

/* WhatsApp Button - Modern Transparent Rectangle */
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.3rem;
  background: transparent;
  color: #c9a961;
  border: 2px solid #c9a961;
  text-decoration: none;
  border-radius: 0; /* Rectangle */
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

/* WhatsApp Hover Animation */
.whatsapp-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #c9a961;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.whatsapp-button:hover::before {
  width: 500px;
  height: 500px;
}

.whatsapp-button:hover {
  color: #fff;
  border-color: #c9a961;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact {
    padding: 4rem 0;
  }

  .contact h2 {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-form-section {
    padding: 2.5rem;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 3rem 0;
  }

  .contact .section-header {
    margin-bottom: 3rem;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact-info-list {
    gap: 2rem;
  }

  .info-item {
    padding-bottom: 2rem;
  }

  .map-container {
    height: 300px;
  }

  .contact-form-section {
    padding: 2rem;
  }

  .form-header h3 {
    font-size: 1.8rem;
  }

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

  .contact-form {
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .contact h2 {
    font-size: 1.8rem;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .map-container {
    height: 250px;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }
}

/* Footer */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Background */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 143, 74, 0.05), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Footer Wrapper */
.footer-wrapper {
  position: relative;
  z-index: 1;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Footer Brand Column */
.footer-brand-col {
  max-width: 350px;
}

.footer-logo h3 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #c9a961;
  line-height: 1.2;
}

.footer-logo p {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: -0.5rem;
  /* margin: 1rem 0 0; */
}

/* Footer Title */
.footer-title {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #c9a961;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #c9a961;
  transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-contact li svg {
  color: #c9a961;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #c9a961;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social .social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-social .social-link:hover {
  background: #c9a961;
  border-color: #c9a961;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.social-description {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.copyright {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.created-by {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.heart-icon {
  color: #c9a961;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.created-by a {
  color: #c9a961;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.created-by a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a961;
  transition: width 0.3s ease;
}

.created-by a:hover {
  color: #fff;
}

.created-by a:hover::after {
  width: 100%;
}

/* Heartbeat Animation */
@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.15);
  }
  20%,
  40% {
    transform: scale(1);
  }
}

/* Large Desktop */
@media (max-width: 1400px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1.3fr 1.3fr;
    gap: 2.5rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  footer {
    padding: 3.5rem 0 0;
  }

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

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .created-by {
    margin-top: -1.8rem;
  }
}

@media (max-width: 480px) {
  .footer-column.order-socials {
    order: 1;
    margin-bottom: 1.5rem;
  }

  .footer-column.order-links {
    order: 3;
    margin-bottom: 1.5rem;
  }

  .footer-column.order-contact {
    order: 2;
    margin-bottom: 1.5rem;
  }

  .footer-title.socials {
    display: none;
  }

  footer {
    padding: 2.5rem 0 0;
  }

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

  .footer-logo h3 {
    font-size: 1.3rem;
  }

  .footer-logo p {
    font-size: 0.85rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-links li a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  .footer-social .social-link {
    width: 42px;
    height: 42px;
  }

  .copyright,
  .created-by {
    font-size: 0.85rem;
  }

  .social-description {
    display: none;
  }
}

/* Large Desktop */
@media (max-width: 1400px) {
  .contact h2 {
    font-size: 2.5rem;
  }

  .contact-content {
    gap: 4rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .contact {
    padding: 4rem 0;
  }

  .contact h2 {
    font-size: 2.2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-form-section {
    padding: 2.5rem;
    order: 1;
  }

  .contact-info-wrapper {
    order: 2;
  }

  .map-container {
    height: 350px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 3rem 0;
  }

  .contact .section-header {
    margin-bottom: 3rem;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .contact-info-list {
    display: none;
  }

  .info-item {
    padding-bottom: 2rem;
  }

  .info-icon {
    width: 45px;
    height: 45px;
  }

  .map-container {
    height: 300px;
  }

  .contact-form-section {
    padding: 2rem;
  }

  .form-header h3 {
    font-size: 1.8rem;
  }

  .form-header p {
    font-size: 0.95rem;
  }

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

  .contact-form {
    gap: 1.2rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact h2 {
    font-size: 1.8rem;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .map-container {
    height: 250px;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .form-header h3 {
    font-size: 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .contact-info-list {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .logo {
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-phone {
    font-size: 1.8rem;
  }

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

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero {
    padding-bottom: 150px;
  }

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

/* Features Section */
.features {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.features::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.features::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 143, 74, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

/* Section Header */
.features .section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.features .subtitle {
  display: inline-block;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.features h2 {
  font-size: 3rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.15rem;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #555;
  line-height: 1.8;
}

/* Features Wrapper */
.features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Individual Feature Item - Image Larger Than Content */
.feature-item {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* Image larger: 1.3, Content smaller: 1 */
  gap: 5rem;
  align-items: center;
  position: relative;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

/* Remove border from last item */
.feature-item:last-child {
  border-bottom: none;
}

/* Reverse layout - Content first, then Image */
.feature-item.reverse {
  grid-template-columns: 1fr 1.3fr; /* Content: 1, Image larger: 1.3 */
}

.feature-item.reverse .feature-image-wrapper {
  order: 2; /* Image comes second */
}

.feature-item.reverse .feature-text {
  order: 1; /* Content comes first */
}

/* Feature Image Wrapper - Consistent Size */
.feature-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: scale(0.9);
  width: 100%;
}

.feature-item.animated .feature-image-wrapper {
  opacity: 1;
  transform: scale(1);
}

.feature-image-wrapper:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: scale(1.02) translateY(-5px);
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10; /* Consistent aspect ratio for all images */
  transition: transform 0.6s ease;
}

/* Image Zoom on Hover */
.feature-image-wrapper:hover img {
  transform: scale(1.15);
}

/* Image Parallax Effect on Scroll */
.feature-item:nth-child(odd) .feature-image-wrapper {
  transition-delay: 0.2s;
}

.feature-item:nth-child(even) .feature-image-wrapper {
  transition-delay: 0.3s;
}

/* Feature Text Content */
.feature-text {
  padding: 2rem 0;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.feature-item.reverse .feature-text {
  transform: translateX(30px);
}

.feature-item.animated .feature-text {
  opacity: 1;
  transform: translateX(0);
}

/* Number Badge - Left Side Near H3 */
.feature-text::before {
  content: attr(data-number);
  position: absolute;
  top: 0;
  left: -4rem;
  font-size: 4.5rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  color: rgba(201, 169, 97, 0.3);
  line-height: 1;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.5s;
}

.feature-item.animated .feature-text::before {
  opacity: 1;
  transform: translateY(0);
}

.feature-text h3 {
  font-size: 2.8rem;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1.2rem;
}

/* Animated Underline for Headings */
.feature-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9a961, #b08f4a);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.6s;
}

.feature-item.animated .feature-text h3::after {
  width: 100px;
}

.feature-text p {
  color: #555;
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.9;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  transition-delay: 0.7s;
}

.feature-item.animated .feature-text p {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Animation */
.feature-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-item.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delay */
.feature-item:nth-child(1) {
  transition-delay: 0s;
}

.feature-item:nth-child(2) {
  transition-delay: 0.15s;
}

.feature-item:nth-child(3) {
  transition-delay: 0.3s;
}

/* Large Desktop */
@media (max-width: 1400px) {
  .features h2 {
    font-size: 2.5rem;
  }

  .feature-item {
    gap: 4rem;
    padding: 3.5rem 0;
  }

  .feature-text::before {
    left: -3.5rem;
    font-size: 4rem;
  }

  .feature-text h3 {
    font-size: 2.5rem;
  }

  .feature-text p {
    font-size: 1.15rem;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .feature-item {
    grid-template-columns: 1.2fr 1fr; /* Slightly smaller image */
    gap: 3.5rem;
  }

  .feature-item.reverse {
    grid-template-columns: 1fr 1.2fr;
  }

  .feature-text::before {
    left: -3rem;
    font-size: 3.5rem;
  }

  .feature-text h3 {
    font-size: 2.2rem;
  }

  .feature-text p {
    font-size: 1.1rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .features {
    padding: 4rem 0;
  }

  .feature-item {
    grid-template-columns: 1fr 1fr; /* Equal on tablet */
    gap: 3rem;
    padding: 3rem 0;
  }

  .feature-item.reverse {
    grid-template-columns: 1fr 1fr;
  }

  .feature-text {
    padding: 1rem 0;
  }

  .feature-text::before {
    left: -2.5rem;
    font-size: 3rem;
  }

  .feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }

  .feature-text p {
    font-size: 1.05rem;
  }

  .feature-image-wrapper img {
    aspect-ratio: 4/3; /* Keep consistent */
  }
}

/* Mobile Responsive - Stack Vertically */
@media (max-width: 768px) {
  .features {
    padding: 3rem 0;
  }

  .features .section-header {
    margin-bottom: 3rem;
  }

  .feature-item,
  .feature-item.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }

  /* Always show image first on mobile */
  .feature-item .feature-image-wrapper,
  .feature-item.reverse .feature-image-wrapper {
    order: 1;
  }

  .feature-item .feature-text,
  .feature-item.reverse .feature-text {
    order: 2;
  }

  .feature-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .feature-image-wrapper img {
    aspect-ratio: 16/10; /* Wider on mobile */
  }

  .feature-text {
    padding: 1rem 0;
    text-align: left;
    transform: translateX(0) !important;
  }

  /* Number visible on mobile - above h3 */
  .feature-text::before {
    position: relative;
    left: 0;
    display: block;
    font-size: 3.5rem;
    color: #c9a961;
    opacity: 1;
    margin-bottom: 1rem;
    transform: translateY(0);
  }

  .feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .feature-text h3::after {
    left: 0;
  }

  .feature-item.animated .feature-text h3::after {
    width: 70px;
  }

  .feature-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .features {
    padding: 2.5rem 0;
  }

  .feature-item {
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .feature-image-wrapper {
    max-width: 100%;
  }

  .feature-text::before {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }

  .feature-text h3 {
    font-size: 1.6rem;
  }

  .feature-text p {
    font-size: 1rem;
  }

  .feature-text h3::after {
    height: 3px;
  }

  .feature-item.animated .feature-text h3::after {
    width: 60px;
  }
}
