/* Root Variables - Gold & Cream Theme */
:root {
  --primary-gold: #c5a572;
  --deep-gold: #b8935e;
  --light-gold: #d4b996;
  --cream: #f5efe7;
  --warm-cream: #ede4d8;
  --dark-text: #2c2416;
  --gray-text: #6b5d4f;
  --white: #ffffff;
  --shadow: rgba(197, 165, 114, 0.15);

  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  padding: 1.5rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Modern Logo Design */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-image-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-image-wrapper::before {
  display: none;
}

.logo:hover .logo-image-wrapper {
  transform: scale(1.08);
}

.logo:hover .logo-image-wrapper::before {
  opacity: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(197, 165, 114, 0.2));
  transition: filter 0.3s ease;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 12px rgba(197, 165, 114, 0.35));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
}

.logo-text::after {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 45px;
  background: linear-gradient(180deg, var(--primary-gold), transparent);
  opacity: 0.4;
}

.logo-cresecent {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.logo:hover .logo-cresecent {
  letter-spacing: 1px;
}

.logo-oasis {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.3s ease;
}

.logo:hover .logo-oasis {
  color: var(--primary-gold);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links .cta-button {
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  color: var(--white);
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.nav-links .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-cream) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 90px;
  padding: 4rem 0;
  overflow: hidden;
}

/* Carousel placeholder overlay - also hide on hover */
.carousel-slide .placeholder-overlay {
  display: none; /* Hide carousel placeholders too */
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Carousel Images */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}

.carousel-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(245, 239, 231, 0.3) 0%,
    rgba(197, 165, 114, 0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.carousel-slide .placeholder-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-slide:hover .placeholder-overlay {
  opacity: 0.3;
}

/* Carousel Navigation Dots */
.carousel-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.25);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
}

.carousel-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-dot.active::before,
.carousel-dot:hover::before {
  opacity: 1;
}

.carousel-dot.active {
  border-color: var(--primary-gold);
  background: rgba(197, 165, 114, 0.2);
}

/* Carousel Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(197, 165, 114, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.3);
}

.carousel-control:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control svg {
  width: 24px;
  height: 24px;
  color: var(--dark-text);
  transition: color 0.3s ease;
}

.carousel-control:hover svg {
  color: var(--white);
}

.carousel-control.prev {
  left: 30px;
}

.carousel-control.next {
  right: 30px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(197, 165, 114, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(197, 165, 114, 0.12) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Animated Background Shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  background: linear-gradient(
    135deg,
    rgba(197, 165, 114, 0.08),
    rgba(212, 185, 150, 0.12)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  backdrop-filter: blur(2px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -10%;
  animation: morphFloat 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  top: 60%;
  right: -5%;
  animation: morphFloat 18s ease-in-out infinite reverse;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 30%;
  animation: morphFloat 22s ease-in-out infinite;
  animation-delay: 4s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  top: 30%;
  right: 20%;
  animation: morphFloat 16s ease-in-out infinite reverse;
  animation-delay: 1s;
}

@keyframes morphFloat {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    transform: translate(20px, 30px) rotate(270deg);
  }
}

/* Floating Icons */
.floating-elements {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(245, 239, 231, 0.8)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(197, 165, 114, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 165, 114, 0.2);
}

.float-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary-gold);
}

.float-1 {
  top: 15%;
  left: 10%;
  animation: floatUpDown 6s ease-in-out infinite;
}

.float-2 {
  top: 25%;
  right: 15%;
  animation: floatUpDown 5s ease-in-out infinite;
  animation-delay: 1s;
}

.float-3 {
  bottom: 20%;
  left: 15%;
  animation: floatUpDown 7s ease-in-out infinite;
  animation-delay: 2s;
}

.float-4 {
  bottom: 30%;
  right: 10%;
  animation: floatUpDown 5.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(197, 165, 114, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(245, 239, 231, 0.6) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(197, 165, 114, 0.15),
    rgba(212, 185, 150, 0.2)
  );
  border: 1px solid rgba(197, 165, 114, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
  color: var(--primary-gold);
  font-size: 1rem;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span,
.btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(197, 165, 114, 0.2);
  animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--white);
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px var(--shadow);
  border-color: var(--light-gold);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-text);
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--cream) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}

.about-intro {
  font-size: 1.15rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-gold);
  font-weight: 700;
  min-width: 50px;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--gray-text);
  line-height: 1.7;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-container {
  width: 100%;
  max-width: 500px;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--cream) 0%,
    var(--warm-cream) 50%,
    var(--light-gold) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(197, 165, 114, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: 3rem;
}

.logo-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

.about-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(197, 165, 114, 0.3));
  object-fit: contain;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* About Section Image */
.about-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(197, 165, 114, 0.2);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(197, 165, 114, 0.3);
}

.consulting-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.about-image:hover .consulting-image {
  transform: scale(1.02);
}

/* Image Placeholder Styles */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--warm-cream), var(--cream));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid rgba(197, 165, 114, 0.2);
}

.image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(197, 165, 114, 0.25);
  border-color: var(--primary-gold);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(197, 165, 114, 0.1) 0%,
    rgba(184, 147, 94, 0.15) 50%,
    rgba(197, 165, 114, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-placeholder:hover::before {
  opacity: 1;
}

.placeholder-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  padding: 2rem;
  text-align: center;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  color: var(--primary-gold);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.image-placeholder:hover .placeholder-icon {
  opacity: 1;
  transform: scale(1.1);
}

.placeholder-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 500;
  margin: 0;
}

.placeholder-dimensions {
  font-size: 0.875rem;
  color: var(--gray-text);
  opacity: 0.7;
  font-family: monospace;
}

.consulting-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Image Overlay for About & Showcase */
.about-image .image-overlay,
.showcase-item .image-overlay {
  display: none; /* Completely hide placeholder overlays */
}

.about-image,
.showcase-item {
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(245, 239, 231, 0.3) 0%,
    rgba(237, 228, 216, 0.2) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 12px;
}

.about-image:hover .image-overlay,
.showcase-item:hover .image-overlay {
  opacity: 1;
}

.image-overlay .placeholder-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .placeholder-overlay,
.showcase-item:hover .placeholder-overlay {
  opacity: 0.6;
}

/* Showcase Images - Enhanced hover effects */
.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(197, 165, 114, 0.3);
}

.showcase-main,
.showcase-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-item:hover .showcase-main,
.showcase-item:hover .showcase-secondary {
  transform: scale(1.05);
}

.showcase-main {
  min-height: 450px;
  border-radius: 0;
}

.showcase-secondary {
  min-height: 350px;
  border-radius: 12px;
}

/* Showcase Section */
.showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--warm-cream) 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.4s ease;
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(197, 165, 114, 0.3);
}

.showcase-item.large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  min-height: 450px;
}

.showcase-main {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.showcase-secondary {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.showcase-item .image-overlay {
  border-radius: 0;
}

.showcase-item.large .image-overlay {
  width: 60%;
}

.showcase-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), var(--warm-cream));
}

.showcase-content h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.about-image .image-placeholder {
  border-radius: 12px;
} /* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  padding: 5rem 0;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--primary-gold);
}

.cta-content .btn-primary:hover {
  background: var(--cream);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark-text);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-item span {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--cream);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background-color: var(--white);
}

.contact-form button {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #3a3228 0%, #2a1f17 100%);
  color: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-gold) 50%,
    transparent 100%
  );
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand-text {
  margin-bottom: 0.5rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 1px;
}

.brand-cresecent {
  display: block;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(197, 165, 114, 0.3);
}

.brand-oasis {
  display: block;
  color: var(--cream);
  font-weight: 300;
  font-size: 2.5rem;
  margin-top: -0.3rem;
}

.brand-accent-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  margin-top: 0.8rem;
  border-radius: 2px;
}

.footer-tagline {
  color: var(--light-gold);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer-description {
  color: rgba(237, 228, 216, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 380px;
  margin: 0;
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 165, 114, 0.1);
  border: 1.5px solid rgba(197, 165, 114, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-link svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-link:hover {
  border-color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(197, 165, 114, 0.4);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover svg {
  transform: scale(1.1);
  color: var(--white);
}

/* Disabled Social Links (Coming Soon) */
.social-link-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.social-link-disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(197, 165, 114, 0.3);
}

.social-link-disabled::before {
  display: none;
}

.footer-links h4,
.footer-services h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-links h4::after,
.footer-services h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 1rem;
}

.footer-links a,
.footer-services a {
  color: var(--cream);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  position: relative;
  padding-left: 0;
}

.footer-links a::before,
.footer-services a::before {
  content: "→";
  opacity: 0;
  margin-right: 0;
  transition: all 0.3s ease;
  color: var(--primary-gold);
}

.footer-links a:hover::before,
.footer-services a:hover::before {
  opacity: 1;
  margin-right: 0.5rem;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--primary-gold);
  padding-left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(197, 165, 114, 0.15);
}

.footer-bottom p {
  color: rgba(237, 228, 216, 0.5);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .showcase-item.large {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    min-height: 350px;
  }

  .showcase-content {
    padding: 2rem;
  }

  .showcase-content h3 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .consulting-image {
    min-height: 350px;
  }

  .showcase-secondary {
    min-height: 300px;
  }

  .image-placeholder {
    min-height: 300px;
  }

  .placeholder-icon {
    width: 60px;
    height: 60px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .carousel-control svg {
    width: 20px;
    height: 20px;
  }

  .carousel-control.prev {
    left: 15px;
  }

  .carousel-control.next {
    right: 15px;
  }

  .carousel-nav {
    bottom: 30px;
    padding: 10px 16px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}
