/* ===========================
   ROOT VARIABLES & COLORS
   =========================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-theme: #881A13;
}

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

html {
  scroll-behavior: smooth;
}

/* ===========================
   CUSTOM SCROLLBAR - MODERN DESIGN
   =========================== */
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(0 0 0);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #a02318 0%, #5a0f0a 100%);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #6d1510 0%, #4a0a07 100%);
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  line-height: normal !important;
}

/* ===========================
   CUSTOM UTILITY CLASSES
   =========================== */

/* Font Sizes */
.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: clamp(10px, 1.2vw, 12px);
}

.font-14 {
  font-size: clamp(12px, 1.4vw, 14px);
}


.font-16 {
  font-size: clamp(14px, 1.6vw, 16px);
}

.font-18 {
  font-size: clamp(15px, 1.8vw, 18px);
}

.font-20 {
  font-size: clamp(16px, 2vw, 20px);
}

.font-22 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.font-24 {
  font-size: clamp(20px, 2.4vw, 24px);
}

.font-28 {
  font-size: clamp(20px, 2.8vw, 28px);
}

.font-30 {
  font-size: clamp(20px, 3vw, 30px);
}

.font-32 {
  font-size: clamp(24px, 3.2vw, 32px);
}

.font-48 {
  font-size: clamp(28px, 4.8vw, 48px);
}


/* Font Weights */
.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* Line Heights */
.line-height-20 {
  line-height: clamp(18px, 2vw, 20px);
}

.line-height-24 {
  line-height: clamp(20px, 2.4vw, 24px);
}

.line-height-28 {
  line-height: clamp(24px, 2.8vw, 28px);
}

.line-height-32 {
  line-height: clamp(1.5rem, 0.875rem + 2vw, 2rem);
}



/* Colors */
.text-theme {
  color: var(--color-theme);
}

.text-black {
  color: var(--color-black);
}

.text-white {
  color: var(--color-white);
}

.text-light {
  color: #ffffff9d;
}

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

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

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

.container {
  max-width: 1160px !important;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar.sticky-top {
  background-color: transparent !important;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.navbar {
  background-color: transparent !important;
}

.navbar.scrolled {
  background-color: #000000 !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-logo img {
  height: clamp(2.8125rem, 1.6406rem + 3.75vw, 3.75rem);
  width: auto;
  transition: all 0.3s ease;
}

.navbar-logo:hover img {
  transform: scale(1.08);
  filter: brightness(1.2);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-theme);
  font-weight: 700;
}

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

.navbar-cta {
  display: inline-block;
  padding: clamp(0.5rem, 0.3438rem + 0.5vw, 0.625rem) clamp(1.125rem, 0.5rem + 2vw, 1.625rem);
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  border: 1px solid var(--color-theme);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 2px rgb(16 15 14 / 62%);
}

.navbar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.1),
    0 0 20px rgba(136, 26, 19, 0.3);
}


/* Hamburger Menu */
.navbar-toggle {
  display: none !important;
  background: none;
  border: none;
  padding: 0;
  order: 3;
  gap: 6px;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

/* Mobile Menu */
@media (max-width: 992px) {
  .navbar-toggle {
    display: flex !important;
    order: 2;
  }

  .navbar-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: 1.5rem !important;
    border-bottom: 1px solid rgba(136, 26, 19, 0.3);
    margin: 0 !important;
  }

  .navbar-menu.active {
    display: flex !important;
  }

  .nav-link::after {
    display: none;
  }

}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: clamp(500px, 95vh, 100vh);
  max-height: 100vh;
  padding: clamp(100px, 10vh, 120px) 0 clamp(40px, 8vh, 80px);
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(136, 26, 19, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  padding: clamp(20px, 5vw, 40px) clamp(15px, 3vw, 30px);
}

.hero-title {
  letter-spacing: -1px;
  font-size: clamp(28px, 6vw, 64px) !important;
  line-height: clamp(40px, 7vw, 72px) !important;
}

.hero-section p {
  font-size: clamp(16px, 2.5vw, 20px) !important;
  line-height: clamp(24px, 3.5vw, 32px) !important;
}

.hero-cta {
  gap: clamp(10px, 2vw, 16px) !important;
  flex-wrap: wrap;
}

.hero-cta a {
  font-size: clamp(14px, 2vw, 16px) !important;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 30px) !important;
  min-width: clamp(120px, 30vw, 150px);
}

.scroll-indicator {
  margin-top: clamp(20px, 5vh, 40px) !important;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: clamp(450px, 70vh, 600px);
  }

  .hero-content {
    padding: 20px 15px;
  }
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  padding: 14px clamp(1rem, -0.875rem + 6vw, 2.5rem);
  background-color: var(--color-theme);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 150px;
}

.btn-primary:hover {
  background-color: #6d1510;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(136, 26, 19, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 14px clamp(1rem, -0.875rem + 6vw, 2.5rem);
  background-color: transparent;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 150px;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-theme);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(136, 26, 19, 0.3);
}

/* ===========================
   SCROLL INDICATOR
   =========================== */

.scroll-arrow {
  color: var(--color-theme);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(50px, 8vw, 80px) 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(136, 26, 19, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(136, 26, 19, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-row {
  align-items: center;
}

.about-image-wrapper {
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 20px 50px rgba(136, 26, 19, 0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height:  clamp(29.375rem, 27.9412rem + 7.6471vw, 37.5rem);

}

.about-image-wrapper:hover {
  box-shadow: 0 30px 70px rgba(136, 26, 19, 0.28);
  transform: translateY(-6px);
}

.about-image-main {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
  border-radius: clamp(12px, 2vw, 16px);
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.3) 0%, rgba(136, 26, 19, 0.1) 100%);
  opacity: 1;
}

.overlay-icon {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.about-badge {
  display: inline-block;
}

.badge-pill {
  border-radius: 50px;
  padding: clamp(8px, 1vw, 8px) clamp(16px, 2vw, 20px);
  box-shadow: 0 6px 20px rgba(136, 26, 19, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-block;
}

.badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(136, 26, 19, 0.3);
}

.badge-gradient {
  background: linear-gradient(135deg, #881A13 0%, #6d1510 100%);
  box-shadow: 0 6px 20px rgba(136, 26, 19, 0.25);
}

.about-title {
  letter-spacing: -0.8px;
  z-index: 1;
}

.about-text {
  z-index: 1;
}

.feature-item {
  gap: clamp(8px, 1vw, 10px);
  align-items: flex-start;
  padding: clamp(10px, 1.2vw, 12px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(136, 26, 19, 0.08);
  border-radius: clamp(8px, 1.5vw, 10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(136, 26, 19, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(136, 26, 19, 0.1);
}

.feature-icon {
  width: clamp(36px, 4vw, 38px);
  height: clamp(36px, 4vw, 38px);
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border-radius: clamp(8px, 1.2vw, 10px);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #881A13 0%, #6d1510 100%);
  color: white;
  transform: scale(1.08);
}

.about-buttons {
  gap: clamp(12px, 2vw, 16px);
}

.btn-about {
  align-items: center;
  gap: clamp(8px, 1vw, 10px);
  padding: clamp(10px, 1.2vw, 12px) clamp(20px, 3vw, 28px);
  border-radius: clamp(6px, 1vw, 8px);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-about-primary {
  background: linear-gradient(135deg, #881A13 0%, #6d1510 100%);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.25);
}

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

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

.btn-about-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.35);
  background: linear-gradient(135deg, #a02318 0%, #5a0f0a 100%);
}

.btn-about-outline-black {
  background: transparent;
  border: clamp(1px, 0.15vw, 1.5px) solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
}

.btn-about-outline-black:hover {
  background: #000000;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.decorative-vectors {
  top: 16px;
  right: 16px;
}

.vector-camera {
  opacity: 0.1;
}

.decorative-vectors svg {
  height: 120px;
  width: 120px;
  opacity: 0.04;
}


/* ===========================
   WHY SECTION
   =========================== */
.why-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}


.stat-card {
  background: white;
  padding: clamp(16px, 4vw, 32px);
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s ease;
  z-index: 1;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.stat-icon {
  width: clamp(50px, 8vw, 70px);
  height: clamp(50px, 8vw, 70px);
  background: linear-gradient(170deg, #cb4a42 0%, #220605 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.3);
}

.stat-number {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.textLight {
  color: rgba(0, 0, 0, 0.65);
}


/* ===========================
   TEAM SECTION
   =========================== */
.team-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
}

.team-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.team-title {
  position: relative;
  z-index: 1;
}

.team-subtitle {
  position: relative;
  z-index: 1;
  color: rgba(0, 0, 0, 0.6);
}

.team-card {
  background: white;
  padding: clamp(16px, 2vw, 20px);
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s ease;
  z-index: 1;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.team-image-wrapper {
  border-radius: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.12);
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
}

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

.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-image-wrapper:hover .team-overlay {
  opacity: 1;
}

.team-social {
  width: clamp(36px, 5vw, 40px);
  height: clamp(36px, 5vw, 40px);
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.team-social:hover {
  background: var(--color-theme);
  transform: scale(1.1);
}

.team-name {
  letter-spacing: -0.5px;
}

/* ===========================
   FOUNDER SECTION
   =========================== */
.founder-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.founder-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.founder-image-frame {
  position: relative;
  z-index: 1;
}

.frame-decoration {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--color-theme);
  border-radius: clamp(12px, 2vw, 16px);
  opacity: 0.5;
  z-index: 0;
  animation: dashBorder 6s ease-in-out infinite;
}

@keyframes dashBorder {
  0% {
    border-color: var(--color-theme);
    opacity: 0.3;
    box-shadow: 0 0 0 0 rgba(136, 26, 19, 0);
  }

  50% {
    border-color: #6d1510;
    opacity: 0.7;
    box-shadow: 0 0 15px 2px rgba(136, 26, 19, 0.3);
  }

  100% {
    border-color: var(--color-theme);
    opacity: 0.3;
    box-shadow: 0 0 0 0 rgba(136, 26, 19, 0);
  }
}

.founder-image-wrapper {
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 20px 50px rgba(136, 26, 19, 0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: clamp(20rem, 16.875rem + 10vw, 22.5rem);
  margin: 0 auto;
}

.founder-image-wrapper:hover {
  box-shadow: 0 30px 70px rgba(136, 26, 19, 0.28);
  transform: translateY(-6px);
}

.founder-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.founder-cta {
  display: inline-flex;
  padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 32px);
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: clamp(6px, 1vw, 8px);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.25);
  position: relative;
  z-index: 1;
}

.founder-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
  border-radius: clamp(6px, 1vw, 8px);
}

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

.founder-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.35);
  background: linear-gradient(135deg, #a02318 0%, #5a0f0a 100%);
}


/* ===========================
   EXPERT TEAM SECTION
   =========================== */
.expert-team-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
}

.expert-team-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.expert-team-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.expert-member-card {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.expert-member-card:hover {
  transform: translateY(-8px);
}

.expert-image-container {
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.12);
  transition: all 0.3s ease;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.expert-image-container:hover {
  box-shadow: 0 15px 35px rgba(136, 26, 19, 0.2);
}

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

.expert-image-container:hover img {
  transform: scale(1.08);
}

.expert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expert-image-container:hover .expert-overlay {
  opacity: 1;
}

.expert-social {
  width: clamp(40px, 5vw, 44px);
  height: clamp(40px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.expert-social:hover {
  background: var(--color-theme);
  transform: scale(1.1);
}

.skill-badge {
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border: 1px solid rgba(136, 26, 19, 0.2);
  color: var(--color-theme);
  padding: clamp(4px, 0.8vw, 6px) clamp(10px, 1.5vw, 14px);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.skill-badge:hover {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  color: white;
  border-color: var(--color-theme);
}



/* ===========================
   CORE VALUES SECTION
   =========================== */
.core-values-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
  padding: clamp(40px, 6vw, 60px) 0;
}

.core-values-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.core-values-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.value-box {
  background: white;
  padding: clamp(16px, 2vw, 20px);
  border-radius: clamp(8px, 1.5vw, 12px);
  box-shadow: 0 2px 10px rgba(136, 26, 19, 0.06);
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
}

.value-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(136, 26, 19, 0.12);
}

.value-icon-box {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: 6px;
  min-width: 45px;
}




/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 100px) 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.service-card {
  background: white;
  padding: clamp(32px, 5vw, 40px);
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 20px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
  border: 1px solid rgba(136, 26, 19, 0.05);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(136, 26, 19, 0.18);
  border-color: rgba(136, 26, 19, 0.15);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: clamp(10px, 1.5vw, 14px);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 25px rgba(136, 26, 19, 0.25);
}


/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 100px) 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.service-card-premium {
  background: white;
  padding: clamp(28px, 4vw, 36px);
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 20px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
  border-left: 4px solid var(--color-theme);
}

.service-card-premium:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(136, 26, 19, 0.15);
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(170deg, #cb4a42 0%, #220605 100%);
  border-radius: clamp(12px, 2vw, 16px);
  transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-large {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.25);
}


.service-card-image {
  height: 350px;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.service-card-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(136, 26, 19, 0.2);
}

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

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





/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 100px) 0;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.portfolio-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.portfolio-item {
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  cursor: pointer;
  position: relative;
}

.portfolio-item-large {
  height: 400px;
}

.portfolio-item-small {
  height: 280px;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: clamp(20px, 3vw, 30px);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(136, 26, 19, 0.2);
}

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

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


.portfolio-card {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.portfolio-image-box {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 16px) clamp(12px, 2vw, 16px) 0 0;
}

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

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

.portfolio-info {
  background: white;
}

.nav-link:focus-visible {
  box-shadow: none !important;
}

/* ===========================
   PORTFOLIO TABS & CARDS
   =========================== */

/* Portfolio Tabs */
.portfolio-tabs {
  border: none;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-tabs .nav-link {
  padding: 8px 22px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  color: var(--color-theme);
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  transition: all 0.3s ease;
}

.portfolio-tabs .nav-link.active {
  background: var(--color-theme);
  color: white;
  border-color: var(--color-theme);
}

/* Portfolio Cards */
.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.portfolio-card img {
  width: 100%;
  height: clamp(15.625rem, 7.8125rem + 25vw, 21.875rem);
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

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

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, #00000005 100%);
}


/* Old Portfolio Category Cards - Keep for backward compatibility */
.portfolio-category-card {
  height: 300px;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
}

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

.portfolio-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.portfolio-category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.portfolio-category-card:hover .category-overlay {
  opacity: 1;
}


/* ===========================
   BLOG SECTION
   =========================== */
.blog-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 100px) 0;
}


.blog-card-new {
  height: 380px;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  cursor: pointer;
}

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

.blog-card-new:hover img {
  transform: scale(1.08);
}

.blog-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.8) 100%);
  transition: all 0.3s ease;
  opacity: 1;
}

.blog-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.2);
}

.blog-card-new:hover .blog-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.9) 100%);
}

.blog-date-new {
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.blog-date-new span {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: clamp(11px, 1.2vw, 12px);
}

.blog-link-new {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.blog-link-new:hover {
  transform: translateX(6px);
}

.blog-link-new svg {
  transition: transform 0.3s ease;
}

.blog-link-new:hover svg {
  transform: translateX(4px);
}


/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 100px) 0;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.testimonial-card {
  background: white;
  padding: clamp(24px, 4vw, 32px);
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
  border-left: 4px solid var(--color-theme);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.testimonial-header {
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-theme);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
}

/* Carousel Styles */
.testimonials-carousel {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  animation: scroll-testimonials 25s linear infinite;
  width: fit-content;
  justify-content: end;
  width: 100%;
}

.testimonial-card-carousel {
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  position: relative;
  min-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 3px solid var(--color-theme);
}

.testimonial-card-carousel:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.15);
}

.testimonial-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.testimonial-couple-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.testimonial-card-carousel:hover .testimonial-couple-image {
  transform: scale(1.05);
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.testimonial-header {
  margin-bottom: clamp(8px, 1vw, 12px);
}

.testimonial-header h4 {
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.testimonial-header p {
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 600;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: clamp(8px, 1vw, 12px);
}

.testimonial-rating svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.testimonial-rating svg:hover {
  transform: scale(1.1);
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}



/* ===========================
   CTA WEDDING PHOTOGRAPHY SECTION
   =========================== */
.cta-wedding-section {
  padding: clamp(60px, 10vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-wrapper {
  position: relative;
  border-radius: clamp(12px, 2vw, 16px);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: clamp(12px, 2vw, 16px);
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(2px);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.cta-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: white;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.cta-badge:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-title {
  margin-bottom: 1rem;
}

.cta-description {
  margin-bottom: clamp(20px, 3vw, 30px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-btn {
  padding: clamp(0.375rem, 0.0625rem + 1vw, 0.625rem) clamp(0.625rem, -0.1563rem + 2.5vw, 1.25rem);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, #ff5555 0%, #dd1111 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  color: white;
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.cta-trust {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.cta-trust-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.cta-trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: white;
}

@media (max-width: 768px) {
  .cta-wrapper {
    min-height: 360px;
  }

  .cta-content {
    padding: clamp(24px, 3vw, 30px);
  }


  .cta-btn {
    width: 100%;
    justify-content: center;
  }

}


/* ===========================
   FAQ SECTION - CUSTOM ACCORDION
   =========================== */
.faq-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.faq-badge {
  display: inline-block;
}

.faq-title {
  position: relative;
  margin-bottom: 1rem;
}

.faq-subtitle {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-accordion {
  z-index: 1;
  position: relative;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(136, 26, 19, 0.12);
  border-radius: 16px;
  margin-bottom: clamp(14px, 1.8vw, 16px);
  box-shadow: 0 8px 28px rgba(136, 26, 19, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.faq-item:hover {
  box-shadow: 0 16px 48px rgba(136, 26, 19, 0.2);
  transform: translateY(-6px);
}

.faq-button {
  background: white;
  border: none;
  padding: clamp(18px, 2.5vw, 22px) clamp(20px, 3vw, 28px);
  text-align: left;
  transition: all 0.3s ease;
  color: var(--color-black);
  position: relative;
  width: 100%;
  box-shadow: none;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 16px);
  letter-spacing: -0.3px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-button:hover {
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.06) 0%, rgba(136, 26, 19, 0.03) 100%);
  color: var(--color-theme);
}

.faq-button.active {
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.04) 0%, rgba(136, 26, 19, 0.02) 100%);
  color: var(--color-theme);
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-button.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-top: 1px solid rgba(136, 26, 19, 0.08);
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

.faq-body.show {
  max-height: 500px;
  padding: clamp(16px, 2.5vw, 20px) clamp(20px, 3vw, 28px);
  visibility: visible;
}

@media (max-width: 768px) {
  .faq-button {
    padding: clamp(16px, 2vw, 18px) clamp(16px, 2.5vw, 20px);
  }

}


/* ===========================
   FOOTER SECTION
   =========================== */
.footer-section {
  background: #000000;
  padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(136, 26, 19, 0.15);
}

.footer-logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 1rem;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 6px;
  border: 1px solid rgba(136, 26, 19, 0.3);
  background: rgb(136 26 19 / 20%);
  text-decoration: none;
}

.footer-social-btn:hover {
  color: var(--color-theme);
  background: rgba(136, 26, 19, 0.2);
  border-color: var(--color-theme);
  transform: translateY(-2px);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list li {
  margin: 0;
}

.footer-list a {
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-list a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-theme);
  transition: width 0.3s ease;
}

.footer-list a:hover {
  color: var(--color-theme);
}

.footer-list a:hover::before {
  width: 100%;
}

.footer-divider {
  height: 1px;
  background: rgb(136 26 19 / 23%);
  margin: clamp(20px, 5vw, 30px) 0;
}

.footer-instagram-grid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.instagram-thumb-large {
  width: clamp(80px, 10vw, 110px);
  height: clamp(80px, 10vw, 110px);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer-bottom-links a {
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-theme);
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-theme);
}

.footer-bottom-links a:hover::before {
  width: 100%;
}

.instagram-thumb-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-thumb-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.2);
}

.instagram-thumb-large:hover img {
  transform: scale(1.08);
}

.footer-bottom-links {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--color-theme);
}

@media (max-width: 768px) {

  .footer-instagram-grid {
    justify-content: start;
  }

  .footer-bottom-links {
    justify-content: start;
  }
}



/* ===========================
   INSTAGRAM SECTION
   =========================== */
.instagram-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(60px, 10vw, 100px) 0;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.instagram-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.instagram-post {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
  position: relative;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.instagram-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.2);
}

.instagram-post:hover img {
  transform: scale(1.08);
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.btn-instagram {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  color: white;
  padding: clamp(12px, 1.5vw, 16px) clamp(24px, 3vw, 32px);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.25);
  display: inline-flex;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(136, 26, 19, 0.35);
  background: linear-gradient(135deg, #a02318 0%, #5a0f0a 100%);
  color: white;
}

@media (max-width: 768px) {
  .instagram-post {
    border-radius: 8px;
  }
}


/* ===========================
   ABOUT PAGE SECTION
   =========================== */

/* About Hero Section - Background image with overlay */
.about-hero-section {
  min-height: clamp(500px, 88vh, 100vh);
  max-height: 100vh;
  padding: clamp(80px, 15vh, 150px) 0 clamp(60px, 10vh, 100px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image container */
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay for text readability */
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(43 41 41 / 71%) 0%, rgb(255 0 0 / 6%) 50%, rgb(0 0 0 / 72%) 100%);
  z-index: 1;
}

/* Hero content positioning */
.about-hero-content {
  z-index: 2;
  position: relative;
  width: 100%;
}

/* Hero title styling */
.about-hero-title {
  letter-spacing: -1px;
  font-size: clamp(28px, 5vw, 64px);
  line-height: clamp(40px, 7vw, 72px);
}


@media (max-width: 768px) {
  .about-hero-section {
    min-height: clamp(450px, 70vh, 600px);
  }
}

/* About content section styling */
.about-content-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(50px, 8vw, 80px) 0;
}


/* ===========================
   OUR JOURNEY SECTION (REDESIGNED)
   =========================== */

/* Journey section background */
.our-story-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
  padding: clamp(50px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.our-story-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.our-story-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, linear-gradient(135deg, rgba(136, 26, 19, 0.12) 0%, rgba(0, 0, 0, 0.08) 100%) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* Journey description */
.journey-description {
  padding: clamp(0rem, -1.25rem + 4vw, 1rem);
  position: relative;
  z-index: 1;
}

/* Milestone box - individual cards */
.milestone-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(136, 26, 19, 0.08);
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136, 26, 19, 0.06);
}

/* Milestone icon */
.milestone-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: none;
  color: var(--color-theme);
}

.milestone-number {
  letter-spacing: -0.5px;
  font-size: clamp(20px, 2.2vw, 24px);
  margin-bottom: 0.3rem;
}

.milestone-box p {
  color: rgba(0, 0, 0, 0.7);
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 500;
}

/* Journey image grid container */
.journey-image-grid {
  position: relative;
  z-index: 1;
}

/* Journey grid image */
.journey-grid-image {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.12);
  transition: all 0.3s ease;
  height: 200px;
}

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

.journey-grid-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(136, 26, 19, 0.18);
}

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





/* ===========================
   CORE VALUES SECTION
   =========================== */

/* Core values section background */
.core-values-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
}

/* Value card */
.value-card {
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(136, 26, 19, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(136, 26, 19, 0.15);
}

/* Value icon */
.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 28px rgba(136, 26, 19, 0.3);
}


/* ===========================
   MEET OUR TEAM SECTION
   =========================== */

/* Team section background */
.meet-team-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f0f3f7 100%);
}

/* Team section with auto-sliding animation */
.team-section {
  overflow: hidden;
}

.team-section .row {
  display: flex;
  flex-wrap: nowrap;
  animation: slideTeam 15s linear infinite;
  width: max-content;
  gap: 8px;
  width: 100%;
  justify-content: end;
}

.team-section .row:hover {
  animation-play-state: paused;
}

@keyframes slideTeam {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.team-member-wrapper {
  flex: 0 0 auto;
  min-width: 280px;
  max-width: 320px;
  width: 300px;
}

/* Team member card */
.team-member-card,
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(136, 26, 19, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
}

.team-member-card:hover,
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(136, 26, 19, 0.15);
}

/* Team member image */
.team-member-image,
.team-image-wrapper {
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
}

.team-member-image img,
.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-image img,
.team-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

/* Team member content */
.team-member-content {
  padding: 0.5rem 0;
}

/* Team role badge */
.team-role {
  display: inline-block;
}

/* Specialty tags */
.specialty-tag {
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border: 1px solid rgba(136, 26, 19, 0.2);
  color: var(--color-theme);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.specialty-tag:hover {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  color: white;
  border-color: var(--color-theme);
}


/* ===========================
   ABOUT PAGE - MEET OUR TEAM SECTION (NEW LAYOUT)
   =========================== */

/* Team description */
.team-description {
  padding: 1rem;
}

/* Team stat box */
.team-stat-box {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(136, 26, 19, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.team-stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(136, 26, 19, 0.12);
}

/* Team image grid container */
.team-image-grid {
  position: relative;
}

/* Decorative circles */
.team-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 26, 19, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.team-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.team-circle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
}

/* Team grid image */
.team-grid-image {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(136, 26, 19, 0.12);
  transition: all 0.3s ease;
  height: 200px;
}

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

.team-grid-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(136, 26, 19, 0.18);
}

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

@media (max-width: 1200px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;

  }
}

@media (max-width: 575px) {
  .portfolio-tabs {
    border: none;
    flex-wrap: nowrap;
    justify-content: flex-start !important;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .team-section .row {
    animation: slideTeam 12s linear infinite;
  }
}


/* ===========================
   CONSULTATION MODAL
   =========================== */
.consultation-modal {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.consultation-modal .modal-header {
  padding: 0;
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
  border: none;
}

.consultation-modal .modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.consultation-modal .modal-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.btn-close {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  background-color: #0c08085c;
  filter: invert(1);
}


.consultation-modal .modal-body {
  padding: 32px;
}

.consultation-input {
  padding: 10px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.consultation-input:focus-within {
  border-color: var(--color-theme);
  box-shadow: 0 0 0 3px rgba(136, 26, 19, 0.1);
}

.consultation-input input:focus {
  outline: none;
}

.consultation-input:focus {
  border-color: var(--color-theme);
  box-shadow: 0 0 0 3px rgba(136, 26, 19, 0.1);
  outline: none;
}

.consultation-input::placeholder {
  color: #999;
}

.captcha-code {
  background: #000;
  padding: 10px 24px;
  border-radius: 6px;
  letter-spacing: 4px;
}

/* ===========================
   BLOG SEARCH WRAPPER
   =========================== */
.blog-search-wrapper .input-group {
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.blog-search-wrapper .input-group:focus-within {
  border-color: var(--color-theme);
  box-shadow: 0 0 0 4px rgba(136, 26, 19, 0.1);
}

.blog-search-wrapper .input-group-text {
  padding: 12px 20px;
  border: none;
}

.blog-search-wrapper .form-control {
  padding: 12px 16px;
  outline: none;
  box-shadow: none;
}

.blog-search-wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
}

.blog-search-wrapper .btn-theme {
  background: var(--color-theme);
  color: white;
  padding: 12px 32px;
  border: none;
  transition: all 0.3s ease;
}

.blog-search-wrapper .btn-theme:hover {
  background: #6d1510;
  transform: translateY(-2px);
}

/* ===========================
/* ===========================
   PREMIUM BLOG CARDS - MINIMAL CSS
   =========================== */
.featured-articles-section,
.latest-articles-section {
  background: #fafafa;
}

.latest-articles-section {
  background: white;
}

.blog-card-premium {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
  color: inherit;
}

.blog-card-image-container {
  height: 240px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.blog-card-img {
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-image-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.blog-card-meta-overlay {
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.blog-category {
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.blog-card-title {
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-premium:hover .blog-card-title {
  color: var(--color-theme);
}

.blog-card-description {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(136, 26, 19, 0.2);
}

.blog-arrow-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f8f8;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.blog-card-premium:hover .blog-arrow-icon {
  background: var(--color-theme);
  transform: scale(1.1);
}

.blog-arrow-icon svg {
  stroke: #666;
  transition: stroke 0.3s ease;
}

.blog-card-premium:hover .blog-arrow-icon svg {
  stroke: white;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card-image-container {
    height: 200px;
  }

  .blog-card-title {
    min-height: 50px;
  }
}



/* ===========================
   SERVICE CARDS - CLEAN & SIMPLE DESIGN
   =========================== */
.service-card-vertical {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(136, 26, 19, 0.1);
  overflow: hidden;
  position: relative;
}

.service-card-vertical:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(136, 26, 19, 0.15);
  border-color: rgba(136, 26, 19, 0.2);
}

.service-card-vertical .service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.service-card-vertical .service-image-wrapper img {
  transition: transform 0.3s ease;
}

.service-card-vertical:hover .service-image-wrapper img {
  transform: scale(1.05);
}

.service-card-vertical .service-overlay {
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-vertical:hover .service-overlay {
  opacity: 1;
}

.service-card-vertical .service-content {
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  position: relative;
}

.service-card-vertical .service-features {
  border-top: 1px solid rgba(136, 26, 19, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.btn-service {
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.2);
}

.btn-service:hover {
  background: linear-gradient(135deg, #a02318 0%, #6d1510 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(136, 26, 19, 0.3);
  color: #ffffff !important;
  text-decoration: none;
}

/* Enhanced Badge Styling */
.service-card-vertical .position-absolute span {
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(136, 26, 19, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .service-card-vertical .service-image-wrapper img {
    height: 240px !important;
  }

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

@media (max-width: 576px) {


  .service-card-vertical .service-image-wrapper img {
    height: 220px !important;
  }

  .btn-service {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ===========================
   SERVICE CARD ADDITIONAL CLASSES
   =========================== */
.service-image {
  height: 280px;
}

.service-badge {
  background: var(--color-theme);
  border-radius: 25px;
}

.service-subtitle {
  line-height: 1.4;
}

.service-description {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-feature-icon {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--color-theme), #a02318);
  border-radius: 50%;
}

.service-feature-item {
  transition: all 0.2s ease;
}

.service-footer {
  margin-top: auto;
}

.service-price {
  /* Price styling already handled by existing classes */
}

/* Responsive image heights */
@media (max-width: 768px) {
  .service-image {
    height: 240px !important;
  }
}

@media (max-width: 576px) {
  .service-image {
    height: 220px !important;
  }
}

/* Service Button Arrow Icon */
.btn-service svg {
  fill: none !important;
  stroke: currentColor;
  stroke-width: 2;
}

.btn-service svg path {
  d: path("M5 12h14m-7-7l7 7-7 7");
}

/* ===========================
   SERVICE CARD NEW DESIGN
   =========================== */
.service-card-new {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(136, 26, 19, 0.1);
  height: 100%;
}

.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(136, 26, 19, 0.15);
}

.service-card-new .service-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.service-card-new:hover .service-image-wrapper img {
  transform: scale(1.05);
}

.service-card-new .service-content {
  padding: 14px;
}

.service-card-new .service-content h3 {
  margin-bottom: 12px;
  color: #2c3e50;
}

.service-card-new .service-content p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card-new .service-tags {
  gap: 8px;
}

.service-card-new .service-tag-small {
  background: rgba(136, 26, 19, 0.1);
  color: var(--color-theme);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-card-new .service-image-wrapper {
    height: 200px;
  }

  .service-card-new .service-content {
    padding: 20px;
  }

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

/* ===========================
   PHOTOGRAPHY PROCESS SECTION
   =========================== */
.process-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
  padding: clamp(80px, 12vw, 120px) 0;
}


.process-badge {
  display: inline-block;
}

.process-timeline {
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-theme) 0%, rgba(136, 26, 19, 0.3) 50%, var(--color-theme) 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
}

.step-number-wrapper {
  display: inline-block;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(136, 26, 19, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.step-icon {
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.2);
  border: 2px solid rgba(136, 26, 19, 0.1);
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(136, 26, 19, 0.4);
}

.process-step:hover .step-number::before {
  border-color: var(--color-theme);
  transform: scale(1.2);
}

.process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(136, 26, 19, 0.3);
}

.step-title {
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: var(--color-theme);
}

.step-description {
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
  .timeline-line {
    display: none !important;
  }

  .process-step {
    margin-bottom: 40px;
  }

  .step-number {
    width: 70px;
    height: 70px;
  }

  .step-icon {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: clamp(60px, 10vw, 80px) 0;
  }

  .step-number {
    width: 60px;
    height: 60px;
  }

  .step-icon {
    width: 30px;
    height: 30px;
    top: -8px;
    right: -8px;
  }

  .step-icon svg {
    width: 18px;
    height: 18px;
  }

  .step-description {
    max-width: 100%;
  }
}

/* Animation for process steps */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.process-step {
  animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}

.process-step:nth-child(2) {
  animation-delay: 0.2s;
}

.process-step:nth-child(3) {
  animation-delay: 0.3s;
}

.process-step:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===========================
   SIMPLE PROCESS SECTION DESIGN
   =========================== */
.process-steps-container {
  margin-top: 60px;
}

.process-line {
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #ddd;
  z-index: 1;
}

.process-item {
  position: relative;
  z-index: 2;
}

.process-circle-container {
  display: inline-block;
  position: relative;
}

.process-main-circle {
  width: 80px;
  height: 80px;
  background: var(--color-theme);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.2);
  transition: all 0.3s ease;
}

.process-small-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: var(--color-theme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(136, 26, 19, 0.2);
}

.process-title-text {
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.process-description {
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* Hover Effects */
.process-item:hover .process-main-circle {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(136, 26, 19, 0.3);
}

.process-item:hover .process-small-icon {
  transform: scale(1.1);
}

.process-item:hover .process-title-text {
  color: var(--color-theme);
}

/* Responsive Design */
@media (max-width: 991px) {
  .process-line {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .process-main-circle {
    width: 70px;
    height: 70px;
  }

  .process-small-icon {
    width: 28px;
    height: 28px;
    top: -6px;
    right: -6px;
  }

  .process-small-icon svg {
    width: 14px;
    height: 14px;
  }

  .process-description {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .process-main-circle {
    width: 60px;
    height: 60px;
  }

  .process-number {
    font-size: 16px !important;
  }

  .testimonials-carousel {
    animation: scroll-testimonials 12s linear infinite;
  }

}

/* ===========================
   WEDDING HERO STATS - UNIQUE CLASSES
   =========================== */
.wedding-hero-stats {
  max-width: 600px;
  margin: clamp(30px, 5vw, 40px) auto;
}

.wedding-stats-glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(10px, 2vw, 12px);
  padding: clamp(20px, 4vw, 20px) clamp(15px, 3vw, 20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.wedding-stats-glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.wedding-stat-box {
  position: relative;
}

.wedding-stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.3);
}

.wedding-stat-box h3 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wedding-stat-box p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* ===========================
   ABOUT SERVICE SECTION
   =========================== */
.about-service-section {
  background: #f8f9fa;
  padding: clamp(60px, 10vw, 100px) 0;
}


.service-list li {
  transition: all 0.3s ease;
}

.service-list li:hover {
  transform: translateX(5px);
}


.service-image-container {
  border-radius: clamp(15px, 3vw, 20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-main-image {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.clients-badge {
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: clamp(10px, 2vw, 15px);
  padding: clamp(15px, 3vw, 20px);
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.clients-badge .badge-content h4 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.clients-badge .badge-content p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}


/* ===========================
   CREATIVE APPROACH SECTION - CLEAN CARD DESIGN
   =========================== */
.creative-approach-section {
  background: #ffffff;
  padding: clamp(60px, 10vw, 100px) 0;
}

.approach-card-new {
  background: #ffffff;
  border-radius: clamp(15px, 3vw, 20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.approach-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(136, 26, 19, 0.2);
}

.approach-image-container {

  height: 300px;
}

.approach-img {
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.approach-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(136, 26, 19, 0.7) 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.approach-text-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  z-index: 2;
}

.approach-card-new:hover .approach-overlay {
  opacity: 1;
}

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

.approach-icon-new {
  width: clamp(3.125rem, 2.3438rem + 2.5vw, 3.75rem);
  height: clamp(3.125rem, 2.3438rem + 2.5vw, 3.75rem);
  background: var(--color-theme);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.4);
}

.approach-card-new:hover .approach-icon-new {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(136, 26, 19, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .creative-approach-section {
    padding: clamp(40px, 8vw, 60px) 0;
  }

  .approach-image-container {
    height: 250px;
  }

  .approach-text-overlay h4 {
    font-size: clamp(16px, 4vw, 20px);
  }

  .approach-text-overlay p {
    font-size: clamp(10px, 2vw, 14px);
  }
}

/* ===========================
   PROFESSIONAL EQUIPMENT SECTION - PREMIUM DESIGN
   =========================== */
.equipment-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: clamp(80px, 12vw, 120px) 0;
}

.equipment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(136, 26, 19, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(136, 26, 19, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.equipment-item {
  padding: clamp(16px, 4vw, 20px);
  background: #ffffff;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.equipment-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(136, 26, 19, 0.05), transparent);
  transition: left 0.6s ease;
}

.equipment-item:hover::before {
  left: 100%;
}

.equipment-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(136, 26, 19, 0.15);
}

.equipment-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.equipment-item:hover .equipment-icon {
  background: var(--color-theme);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.3);
}

.equipment-item:hover .equipment-icon svg {
  color: white !important;
}

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

.equipment-content h4 {
  transition: color 0.3s ease;
}

.equipment-item:hover .equipment-content h4 {
  color: var(--color-theme);
}

.equipment-content p {
  transition: color 0.3s ease;
}

.equipment-item:hover .equipment-content p {
  color: #555;
}

/* Responsive Design */
@media (max-width: 991px) {
  .equipment-section {
    padding: clamp(60px, 10vw, 80px) 0;
  }

  .equipment-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .equipment-section {
    padding: clamp(50px, 8vw, 60px) 0;
  }

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

  .equipment-item {
    padding: clamp(16px, 3vw, 20px);
  }
}

@media (max-width: 768px) {
  .about-service-section {
    padding: clamp(40px, 8vw, 60px) 0;
  }

  .service-main-image {
    min-height: 250px;
    max-height: 280px;
  }

  .clients-badge {
    bottom: 15px;
    left: 15px;
    padding: clamp(12px, 2vw, 15px);
    min-width: 100px;
  }
}

/* ===========================
   ABOUT SERVICE SECTION - MODIFIED
   =========================== */
.feature-check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.clients-badge-new {
  bottom: clamp(15px, 3vw, 15px);
  left: clamp(15px, 3vw, 35px);
  background: var(--color-theme);
  border-radius: clamp(8px, 2vw, 12px);
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 20px);
  box-shadow: 0 6px 20px rgba(136, 26, 19, 0.4);
  min-width: clamp(100px, 15vw, 130px);
}

.badge-content-new h4 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.badge-content-new p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* ===========================
   SESSION INCLUDES SECTION - LIGHT GRADIENT STYLING
   =========================== */
.session-includes-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #ffffff 100%);
}

.session-includes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(136, 26, 19, 0.02) 0%, transparent 30%, rgba(136, 26, 19, 0.01) 70%, transparent 100%);
  pointer-events: none;
}

.include-card {
  background: linear-gradient(145deg,
      #ffffff 0%,
      #fefefe 20%,
      #fdfdfd 40%,
      #fcfcfc 60%,
      #fbfbfb 80%,
      #fafafa 100%);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 24px);
  box-shadow: 0 4px 20px rgba(136, 26, 19, 0.06),
    0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(136, 26, 19, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.include-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 40px rgba(136, 26, 19, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(136, 26, 19, 0.15);
  background: linear-gradient(145deg,
      #ffffff 0%,
      #fefefe 15%,
      #fdfdfd 30%,
      #fcfcfc 50%,
      #fbfbfb 70%,
      #f9f9f9 100%);
}

.include-icon {
  width: clamp(60px, 8vw, 85px);
  height: clamp(60px, 8vw, 85px);
  border-radius: 50%;
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(136, 26, 19, 0.1);
  animation: gentlePulse 4s ease-in-out infinite;
}

.include-icon::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  background: linear-gradient(135deg,
      rgba(136, 26, 19, 0.15) 0%,
      rgba(136, 26, 19, 0.12) 50%,
      rgba(136, 26, 19, 0.08) 100%);
  border-radius: 50%;
  z-index: -1;
  animation: softRing 3s ease-out infinite;
}

/* Simple Pulse Animations */
@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(136, 26, 19, 0.05);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 15px 3px rgba(136, 26, 19, 0.03);
  }
}

@keyframes softRing {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.include-content h4 {
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  transition: color 0.3s ease;
}

.include-card:hover .include-content h4 {
  color: var(--color-theme);
}

.include-content p {
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .include-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
  }
}

/* Animation Delays for Staggered Effect */
.session-includes-section .col-lg-4:nth-child(1) .include-card {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.session-includes-section .col-lg-4:nth-child(2) .include-card {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.session-includes-section .col-lg-4:nth-child(3) .include-card {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.session-includes-section .col-lg-4:nth-child(4) .include-card {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.session-includes-section .col-lg-4:nth-child(5) .include-card {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.session-includes-section .col-lg-4:nth-child(6) .include-card {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

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

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

/* Premium Light Gradient Accent Elements */
.session-includes-section .container::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -8%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg,
      rgba(136, 26, 19, 0.03) 0%,
      rgba(136, 26, 19, 0.01) 50%,
      transparent 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

.session-includes-section .container::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: -8%;
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg,
      rgba(136, 26, 19, 0.02) 0%,
      rgba(136, 26, 19, 0.005) 50%,
      transparent 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(30px);
}

.session-includes-section .container {
  position: relative;
  z-index: 2;
}

/* Light Gradient Border Animation - Removed */
/* ===========================
   PREMIUM INCLUDES SECTION - NEW DESIGN
   =========================== */
.premium-includes-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #ffffff 100%);
}

.premium-includes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(136, 26, 19, 0.02) 0%,
      transparent 30%,
      rgba(136, 26, 19, 0.01) 70%,
      transparent 100%);
  pointer-events: none;
}

/* ===========================
   OUR PROCESS SECTION - DIAGONAL CORNER CARD DESIGN
   =========================== */
.process-card {
  text-align: center;
  padding: clamp(35px, 4vw, 35px) clamp(25px, 3vw, 25px);
  background: white;
  border-radius: 0px 40px 0px 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Diagonal Corner Design */
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 clamp(80px, 12vw, 100px) clamp(80px, 12vw, 100px) 0;
  border-color: transparent #881a13de transparent transparent;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.process-card:hover::before {
  border-width: 0 clamp(100px, 14vw, 120px) clamp(100px, 14vw, 120px) 0;
  opacity: 1;
}


/* Hover Effect */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.process-icon-wrapper {
  width: clamp(65px, 9vw, 75px);
  height: clamp(65px, 9vw, 75px);
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto clamp(20px, 3vw, 25px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: 2px solid rgba(136, 26, 19, 0.15);
}

.process-card:hover .process-icon-wrapper {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.15) 0%, rgba(136, 26, 19, 0.08) 100%);
  border-color: rgba(136, 26, 19, 0.25);
}

.process-step-number {
  font-size: clamp(26px, 3.8vw, 34px);
  font-weight: 700;
  color: var(--color-theme);
  line-height: 1;
}


.process-card p {
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 1;
  color: rgb(0 0 0 / 58%);
}

/* Staggered Animation on Load */
.process-card {
  animation: fadeInUp 0.6s ease-out both;
}

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

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

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

.process-card:nth-child(4) {
  animation-delay: 0.4s;
}

.process-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-card {
    padding: clamp(30px, 4vw, 35px) clamp(20px, 3vw, 25px);
  }

  .process-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .process-card::before {
    border-width: 0 80px 80px 0;
  }
}


/* ===========================
   PORTFOLIO GALLERY SECTION
   =========================== */
.portfolio-gallery-section {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
}

.portfolio-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(136, 26, 19, 0.01) 0%,
      transparent 50%,
      rgba(136, 26, 19, 0.01) 100%);
  pointer-events: none;
}

.portfolio-item {
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover {
  transform: translateY(clamp(-6px, -1vw, -8px));
  box-shadow: 0 12px 40px rgba(136, 26, 19, 0.15);
}

.portfolio-image-wrapper {
  aspect-ratio: 4/3;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-content {
  transform: translateY(clamp(15px, 3vw, 20px));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
}

/* Animation Effects */
.portfolio-item {
  animation: fadeInUp 0.6s ease-out both;
}

.portfolio-gallery-section .col-lg-4:nth-child(1) .portfolio-item {
  animation-delay: 0.1s;
}

.portfolio-gallery-section .col-lg-4:nth-child(2) .portfolio-item {
  animation-delay: 0.2s;
}

.portfolio-gallery-section .col-lg-4:nth-child(3) .portfolio-item {
  animation-delay: 0.3s;
}

.portfolio-gallery-section .col-lg-4:nth-child(4) .portfolio-item {
  animation-delay: 0.4s;
}

.portfolio-gallery-section .col-lg-4:nth-child(5) .portfolio-item {
  animation-delay: 0.5s;
}

.portfolio-gallery-section .col-lg-4:nth-child(6) .portfolio-item {
  animation-delay: 0.6s;
}

/* ===========================
   ADDITIONAL SERVICES SECTION - NEW DESIGN
   =========================== */

.services-premium-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.premium-service-box {
  background: linear-gradient(135deg, rgb(136 26 19 / 6%) 0%, rgba(136, 26, 19, 0.05) 100%);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: clamp(16px, 2vw, 20px);
  border: 1px solid rgb(136 26 19 / 32%);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-service-box:hover {
  transform: translateY(clamp(-8px, -1.2vw, -12px));
  box-shadow: 0 clamp(15px, 3vw, 25px) clamp(40px, 8vw, 60px) rgba(136, 26, 19, 0.1);
  border-color: rgba(136, 26, 19, 0.15);
}

.premium-service-box:hover::before {
  opacity: 1;
}

.service-icon-circle {
  width: clamp(70px, 8vw, 80px);
  height: clamp(70px, 8vw, 80px);
  background: #7316102e;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-icon-circle::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.premium-service-box:hover .service-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(136, 26, 19, 0.3);
}

.premium-service-box:hover .service-icon-circle::after {
  opacity: 0.3;
}

.premium-service-box h4 {
  transition: color 0.3s ease;
  position: relative;
}

.premium-service-box:hover h4 {
  color: var(--color-theme);
}

.service-pricing {
  position: relative;
}

.service-pricing span {
  position: relative;
  display: inline-block;
}

.service-pricing span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-theme);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-service-box:hover .service-pricing span::after {
  width: 100%;
}

/* Staggered Animation */
.premium-service-box {
  animation: fadeInUp 0.6s ease-out both;
}

.services-premium-grid .row:first-child .col-lg-4:nth-child(1) .premium-service-box {
  animation-delay: 0.1s;
}

.services-premium-grid .row:first-child .col-lg-4:nth-child(2) .premium-service-box {
  animation-delay: 0.2s;
}

.services-premium-grid .row:first-child .col-lg-4:nth-child(3) .premium-service-box {
  animation-delay: 0.3s;
}

.services-premium-grid .row:last-child .col-lg-4:nth-child(1) .premium-service-box {
  animation-delay: 0.4s;
}

.services-premium-grid .row:last-child .col-lg-4:nth-child(2) .premium-service-box {
  animation-delay: 0.5s;
}

.services-premium-grid .row:last-child .col-lg-4:nth-child(3) .premium-service-box {
  animation-delay: 0.6s;
}

/* ===========================
   GALLERY PAGE STYLES
   =========================== */

/* Gallery Hero Stats */
.gallery-stats {
  gap: clamp(1rem, 3vw, 2rem);
}

.stat-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
}

.stat-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}


/* Gallery Content Section */


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
  transform: translateY(clamp(-6px, -1vw, -8px));
  box-shadow: 0 12px 40px rgba(136, 26, 19, 0.15);
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-content {
  transform: translateY(clamp(15px, 3vw, 20px));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

/* Animation Effects */
.gallery-item {
  animation: fadeInUp 0.6s ease-out both;
}

.gallery-content-section .col-lg-4:nth-child(1) .gallery-item {
  animation-delay: 0.1s;
}

.gallery-content-section .col-lg-4:nth-child(2) .gallery-item {
  animation-delay: 0.2s;
}

.gallery-content-section .col-lg-4:nth-child(3) .gallery-item {
  animation-delay: 0.3s;
}

.gallery-content-section .col-lg-4:nth-child(4) .gallery-item {
  animation-delay: 0.4s;
}

.gallery-content-section .col-lg-4:nth-child(5) .gallery-item {
  animation-delay: 0.5s;
}

.gallery-content-section .col-lg-4:nth-child(6) .gallery-item {
  animation-delay: 0.6s;
}

/* ===========================
   GALLERY DETAIL ITEMS
   =========================== */
.gallery-details {
  margin-top: 8px;
}

.gallery-detail-item {
  transition: all 0.2s ease;
}

.gallery-detail-item:hover {
  transform: translateX(2px);
}

.gallery-detail-item svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: white !important;
  stroke: white !important;
  fill: none !important;
}

.gallery-detail-item:hover svg {
  transform: scale(1.1);
}

.gallery-detail-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustments for gallery details */
@media (max-width: 768px) {
  .gallery-detail-item {
    margin-bottom: 6px !important;
  }

  .gallery-detail-item span {
    font-size: 13px;
  }

  .gallery-detail-item svg {
    width: 14px;
    height: 14px;
  }
}

/* Album icon styling - outline only */
.gallery-content .d-flex svg {
  color: white !important;
  stroke: white !important;
  fill: none !important;
}

/* ===========================
   PREMIUM PORTFOLIO STATS SECTION
   =========================== */
.portfolio-premium-stats {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
}

.stats-bg-overlay {
  background:
    radial-gradient(circle at 25% 25%, rgba(136, 26, 19, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(136, 26, 19, 0.02) 0%, transparent 50%);
  top: 0;
  left: 0;
}

.stats-floating-shapes {
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.05) 0%, rgba(136, 26, 19, 0.02) 100%);
  animation: float 6s ease-in-out infinite;
}

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

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

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.stats-premium-badge {
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: 30px;
  box-shadow:
    0 8px 25px rgba(136, 26, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stats-premium-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(10px);
}


.stats-connection-line {
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(136, 26, 19, 0.1) 20%,
      rgba(136, 26, 19, 0.3) 50%,
      rgba(136, 26, 19, 0.1) 80%,
      transparent 100%);
  transform: translateY(-50%);
}

.stats-connection-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-theme);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(136, 26, 19, 0.4);
}

.premium-stat-box {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-stat-box:hover {
  transform: translateY(-15px);
}

.stat-glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 2.5rem);
  min-height: 320px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
  overflow: hidden;
}

.premium-stat-box:hover .stat-glass-card {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 20px 60px rgba(136, 26, 19, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(136, 26, 19, 0.1);
}

.stat-glow {
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(136, 26, 19, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-stat-box:hover .stat-glow {
  opacity: 1;
}

.premium-icon-wrapper {
  width: clamp(3.5rem, 3.4375rem + 5vw, 6.25rem);
  height: clamp(3.5rem, 3.4375rem + 5vw, 6.25rem);
}

.icon-bg-gradient {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: 50%;
  box-shadow:
    0 10px 30px rgba(136, 26, 19, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.icon-ring {
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid rgba(136, 26, 19, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.premium-stat-box:hover .icon-ring {
  border-color: rgba(136, 26, 19, 0.4);
  transform: scale(1.1);
}

.icon-inner {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: transform 0.4s ease;
  height: 100%;
}

.premium-stat-box:hover .icon-inner {
  transform: scale(1.05) rotate(5deg);
}

.icon-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-theme);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.particle-2 {
  bottom: 25%;
  left: 15%;
  animation-delay: 1s;
}

.particle-3 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes particleFloat {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0px);
  }

  50% {
    opacity: 0.6;
    transform: translateY(-10px);
  }
}

.premium-stat-box:hover .particle {
  animation-play-state: running;
}

.premium-number {
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(136, 26, 19, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.premium-stat-box:hover .premium-number {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.premium-title {
  transition: all 0.3s ease;
}

.premium-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-theme) 0%, #a02318 100%);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.premium-stat-box:hover .premium-title {
  color: var(--color-theme);
}

.premium-stat-box:hover .premium-title::after {
  width: 80px;
}

.premium-desc {
  transition: color 0.3s ease;
}

.premium-stat-box:hover .premium-desc {
  color: #666;
}

.stat-decoration-top {
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.stat-decoration-bottom {
  bottom: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.08) 0%, rgba(136, 26, 19, 0.03) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.premium-stat-box:hover .stat-decoration-top,
.premium-stat-box:hover .stat-decoration-bottom {
  opacity: 1;
  transform: scale(1.2);
}

/* Staggered entrance animation */
.premium-stat-box:nth-child(1) {
  animation: slideInUp 0.8s ease-out 0.1s both;
}

.premium-stat-box:nth-child(2) {
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.premium-stat-box:nth-child(3) {
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.premium-stat-box:nth-child(4) {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

/* Responsive Design */
@media (max-width: 992px) {
  .stats-connection-line {
    display: none !important;
  }

  .floating-shape {
    display: none;
  }
}

@media (max-width: 768px) {

  .premium-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .stat-glass-card {
    min-height: 230px;
    padding: clamp(1rem, 3vw, 2rem);
  }

  .premium-stat-box:hover {
    transform: translateY(-8px);
  }
}

/* ===========================
   SEO TEXT CONTENT SECTION STYLES - PROFESSIONAL
   =========================== */
.seo-text-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.wedding-info-section {
  background: white;
}

/* Professional text styling */
.seo-text-content h2,
.wedding-info-section h2 {
  color: var(--color-black);
  position: relative;
}

.seo-text-content h2::after,
.wedding-info-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 8vw, 60px);
  height: 3px;
  background: var(--color-theme);
  border-radius: 2px;
}

.seo-text-content h3,
.wedding-info-section h3 {
  color: var(--color-black);
  position: relative;
  padding-left: clamp(12px, 2vw, 15px);
}

.seo-text-content h3::before,
.wedding-info-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(3px, 0.5vw, 4px);
  height: clamp(16px, 3vw, 20px);
  background: var(--color-theme);
  border-radius: 2px;
}

.seo-text-content h4,
.wedding-info-section h4 {
  position: relative;
  padding-left: clamp(10px, 1.5vw, 12px);
}

.seo-text-content h4::before,
.wedding-info-section h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(2px, 0.4vw, 3px);
  height: clamp(14px, 2.5vw, 16px);
  background: linear-gradient(135deg, var(--color-theme) 0%, #a02318 100%);
  border-radius: 2px;
}

.seo-text-content p,
.wedding-info-section p {
  text-align: justify;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  color: #555;
}

/* ===========================
   GALLERY FILTER SECTION - SAME AS PORTFOLIO NUMBERS BG
   =========================== */
.gallery-filter-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
}

/* Background Overlay - Same as Portfolio Numbers */
.gallery-filter-section .stats-bg-overlay {
  background:
    radial-gradient(circle at 25% 25%, rgba(136, 26, 19, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(136, 26, 19, 0.02) 0%, transparent 50%);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Floating Shapes - Same as Portfolio Numbers */
.gallery-filter-section .stats-floating-shapes {
  top: 0;
  left: 0;
  pointer-events: none;
}

.gallery-filter-section .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.05) 0%, rgba(136, 26, 19, 0.02) 100%);
  animation: float 6s ease-in-out infinite;
}

.gallery-filter-section .shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.gallery-filter-section .shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 8%;
  animation-delay: 2s;
}

.gallery-filter-section .shape-3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

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

/* Filter Tabs - Same as Portfolio Tabs */
.filter-tabs {
  border: none;
  gap: 10px;
}

.filter-tabs .nav-link {
  padding: 8px 22px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  color: var(--color-theme);
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.1) 0%, rgba(136, 26, 19, 0.05) 100%);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-tabs .nav-link.active {
  background: var(--color-theme);
  color: white;
  border-color: var(--color-theme);
}

.filter-tabs .nav-link:focus {
  box-shadow: none;
}

/* Additional responsive fixes for filter layout */

/* Visit Our Studio Section */
.visit-studio-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.visit-studio-header h2 {
  margin-bottom: 1rem;
}


.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgb(199 70 70 / 20%);
  border: 1px solid #6d15103b;
}

.interactive-map {
  width: 100%;
  height: 450px;
}


/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* ===========================
   CONTACT FORM DECORATIVE STYLES
   =========================== */

.contact-form-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(136, 26, 19, 0.02) 0%, rgba(136, 26, 19, 0.05) 100%),
    linear-gradient(45deg, transparent 40%, rgba(136, 26, 19, 0.03) 50%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(136, 26, 19, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(136, 26, 19, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(136, 26, 19, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.form-bg-decoration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 20px,
      rgba(136, 26, 19, 0.02) 20px,
      rgba(136, 26, 19, 0.02) 21px),
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 30px,
      rgba(136, 26, 19, 0.015) 30px,
      rgba(136, 26, 19, 0.015) 31px);
}

.form-bg-decoration::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 25% 25%, rgba(136, 26, 19, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(136, 26, 19, 0.025) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

.camera-bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  color: var(--color-theme);
  transform: rotate(15deg);
}

.heart-icon-1 {
  position: absolute;
  top: 20px;
  left: 20px;
  animation: float 3s ease-in-out infinite;
}

.heart-icon-2 {
  position: absolute;
  bottom: 80px;
  right: 30px;
  animation: float 4s ease-in-out infinite reverse;
}

.ring-icon-1 {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  animation: pulse 2s ease-in-out infinite;
}

.sparkle-1 {
  position: absolute;
  top: 15%;
  right: 15%;
  font-size: 16px;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-2 {
  position: absolute;
  bottom: 25%;
  left: 8%;
  font-size: 14px;
  animation: sparkle 3s ease-in-out infinite 0.5s;
}

.sparkle-3 {
  position: absolute;
  top: 35%;
  right: 8%;
  font-size: 18px;
  animation: sparkle 2.5s ease-in-out infinite 1s;
}

/* Decorative Lines */
.decorative-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.line-1 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(136, 26, 19, 0.03) 20%, rgba(136, 26, 19, 0.06) 50%, rgba(136, 26, 19, 0.03) 80%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

.line-2 {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(136, 26, 19, 0.025) 30%, rgba(136, 26, 19, 0.05) 50%, rgba(136, 26, 19, 0.025) 70%, transparent 100%);
  animation: shimmer 4s ease-in-out infinite 1s;
}

.line-3 {
  position: absolute;
  top: 85%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(136, 26, 19, 0.02) 25%, rgba(136, 26, 19, 0.04) 50%, rgba(136, 26, 19, 0.02) 75%, transparent 100%);
  animation: shimmer 5s ease-in-out infinite 2s;
}

.form-main-icon {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  box-shadow: 0 4px 15px rgba(136, 26, 19, 0.3);
  padding: clamp(12px, 2vw, 16px);
}

.bg-gradient-theme {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
}

.form-header {
  position: relative;
  z-index: 10;
}


/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.1);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Form Enhancement */
.consultation-input:focus {
  border-color: var(--color-theme);
  box-shadow: 0 0 0 3px rgba(136, 26, 19, 0.1);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

.btn-about.btn-about-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 26, 19, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .camera-bg-icon {
    width: 80px;
    height: 80px;
  }

  .sparkle-1,
  .sparkle-2,
  .sparkle-3 {
    font-size: 12px;
  }

  .heart-icon-1 svg,
  .heart-icon-2 svg {
    width: 20px;
    height: 20px;
  }
}


/* CONTACT FORM TYPOGRAPHY CLASSES */


/* Form Background & Container */
.contact-form-bg {
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.02) 0%, rgba(136, 26, 19, 0.05) 100%);
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 100%;
}

/* Form Layout */
.form-col-full {
  flex: 1 1 100%;
  width: 100%;
}

.form-col-half {
  flex: 1 1 calc(50% - 10px);
  min-width: 200px;
}

@media (max-width: 768px) {
  .form-col-half {
    flex: 1 1 100%;
  }
}

.form-content {
  position: relative;
  z-index: 5;
  padding: clamp(24px, 4vw, 40px);

}

/* Form Icon Styles */
.form-icon-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Form Textarea */
.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Captcha Styles */
.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.captcha-input {
  flex: 1;
  min-width: 150px;
}

/* Form Submit */
.form-submit-wrapper {
  margin-top: clamp(8px, 1.5vw, 12px);
}

/* Form Label */
.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 500;
  color: var(--color-black);
}

/* ===========================
   CONTACT INFO LEFT SIDE - COMPACT & CLEAN DESIGN
   =========================== */

.contact-info-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Contact Cards Stack - Single Column */
.contact-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-info-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(136, 26, 19, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  transition: height 0.3s ease;
}

/* Decorative Circle on Right Side */
.contact-info-card::after {
  content: '';
  position: absolute;
  right: -42px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(136, 26, 19, 0.08) 0%, rgba(171, 57, 57, 0.03) 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(136, 26, 19, 0.12);
  border-color: rgba(136, 26, 19, 0.15);
}

.contact-info-card:hover::before {
  height: 100%;
}

.contact-info-card:hover::after {
  background: radial-gradient(circle, rgba(136, 26, 19, 0.12) 0%, transparent 70%);
  transform: scale(1.1);
}

/* Contact Card Icon - Compact */
.contact-card-icon-wrapper {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(136, 26, 19, 0.15);
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(136, 26, 19, 0.25);
}

/* Contact Card Content - Compact */
.contact-card-content {
  flex: 1;
}

.contact-card-content h4 {
  margin-bottom: 4px;
  line-height: 1.3;
}

.contact-card-content p {
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Contact Action Button - Compact */
.contact-action-btn {
  color: var(--color-theme);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(136, 26, 19, 0.05);

}

.contact-action-btn:hover {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  color: white;
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(136, 26, 19, 0.2);
}

.contact-action-btn svg {
  transition: transform 0.3s ease;
}

.contact-action-btn:hover svg {
  transform: translateX(2px);
}

/* Social Media Section - Compact */
.contact-social-section {
  background: #f8f2f1;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgb(136 26 19 / 21%);
  text-align: center;
}

.contact-social-section h4 {
  margin-bottom: 12px;
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(136, 26, 19, 0.08) 0%, rgba(136, 26, 19, 0.05) 100%);
  color: var(--color-theme);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(136, 26, 19, 0.1);
}

.contact-social-icon:hover {
  background: linear-gradient(135deg, var(--color-theme) 0%, #6d1510 100%);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(136, 26, 19, 0.2);
  border-color: var(--color-theme);
}

.search-btn {
  background-color: #f3eded;
  border: 1px solid #7c1811ba;
  color: #791711;

}


/* ===================================
   Blog Detail Page Styles
   =================================== */

/* Blog Action Buttons */
.blog-action-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-action-btn:hover {
  background: var(--color-theme);
  border-color: var(--color-theme);
}

.blog-action-btn:hover svg {
  stroke: white;
}

/* Enhanced Author Card */
.blog-author-card {
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-author-avatar-large {
  width: clamp(3.125rem, 2.3438rem + 2.5vw, 3.75rem);
  height: clamp(3.125rem, 2.3438rem + 2.5vw, 3.75rem);
  border-radius: 50%;
  background: linear-gradient(170deg, #cb4a42 0%, #220605 100%);
  aspect-ratio: 1;
}

.blog-follow-btn {
  padding: 10px 24px;
  border-radius: 8px;
  background: var(--color-theme);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-follow-btn:hover {
  background: #d946ef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Featured Image */
.blog-detail-featured-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-detail-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* Article Intro Box */
.blog-intro-box {
  background: white;
  border-left: 4px solid var(--color-theme);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 7%);
}

/* Blog Sections */
.blog-section {
  background: #f7f7f7;
  padding: clamp(0rem, -1.875rem + 6vw, 1.5rem);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Section Numbers */
.blog-section-number {
  color: var(--color-theme);
  line-height: 1;
  opacity: 0.3;
}

/* Modern Quote Block */
.blog-quote-modern {
  background: white;
  border-left: 4px solid var(--color-theme);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.blog-quote-icon {
  bottom: 0;
  right: 20px;
}

.blog-quote-icon svg {
  fill: var(--color-theme);
}

/* Key Takeaways Box */
.blog-takeaways-box {
  background: white;
  border-radius: 16px;
  border: 2px solid #10b981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.blog-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}

.blog-check-icon svg {
  stroke: white;
}

/* Tags */
.blog-tag {
  padding: 8px 16px;
  background: #f3f4f6;
  border-radius: 8px;
  color: #374151;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background: var(--color-theme);
  color: white;
  transform: translateY(-2px);
}

/* Social Share Buttons */
.blog-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f3f4f6;
  transition: all 0.3s ease;
}

.blog-social-btn svg {
  fill: var(--color-theme);
}

.blog-social-btn:hover {
  background: var(--color-theme);
  transform: translateY(-2px);
}

.blog-social-btn:hover svg {
  fill: white;
}

.blog-social-btn:hover svg[stroke] {
  stroke: white;
}




/* ===========================
   STATS WEDDING SECTION
   =========================== */
.stats-wedding-section {
  background: linear-gradient(135deg, #881A13 0%, #5a0f0a 100%);
}

/* Background Decorations */
.stats-bg-radial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.stats-bg-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 80px);
  z-index: 0;
}

.stats-bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.stats-float-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.stats-float-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
}

.stats-float-2 {
  top: 60%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent);
  filter: blur(50px);
}

.stats-float-3 {
  bottom: 15%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent);
  filter: blur(35px);
}

/* Decorative Icons */
.stats-decor-heart,
.stats-decor-camera {
  position: absolute;
  z-index: 0;
}

.stats-heart-1 {
  top: 20%;
  left: 10%;
  opacity: 0.08;
}

.stats-heart-1 svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.stats-heart-2 {
  bottom: 25%;
  right: 12%;
  opacity: 0.06;
}

.stats-heart-2 svg {
  width: 35px;
  height: 35px;
  fill: white;
}

.stats-camera-1 {
  top: 70%;
  left: 15%;
  opacity: 0.07;
}

.stats-camera-1 svg {
  width: 38px;
  height: 38px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

.stats-camera-2 {
  top: 30%;
  right: 18%;
  opacity: 0.06;
}

.stats-camera-2 svg {
  width: 32px;
  height: 32px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

/* Badge */
.stats-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Title & Subtitle */
.stats-title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
  opacity: 0.85;
}

/* Stats Card */
.stats-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

/* Icon Circle */
.stats-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Stats Number */
.stats-number {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

/* Stats Label */
.stats-label {
  opacity: 0.8;
}


/* ===========================
   PREMIUM CONTENT BOX STYLING
   =========================== */
.premium-content-box {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  padding: clamp(40px, 6vw, 45px) clamp(30px, 5vw, 40px);
  border-radius: clamp(16px, 2.5vw, 24px);
  box-shadow:
    0 10px 20px rgba(136, 26, 19, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(136, 26, 19, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Decorative Corner Elements */
.premium-content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgb(136 26 19 / 8%) 0%, transparent 100%);
  border-radius: clamp(16px, 2.5vw, 24px) 0 0 0;
  pointer-events: none;
}

.premium-content-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 0%, rgba(136, 26, 19, 0.06) 100%);
  border-radius: 0 0 clamp(16px, 2.5vw, 24px) 0;
  pointer-events: none;
}

/* Left Border Accent */
.seo-text-content.premium-content-box {
  border-left: 4px solid var(--color-theme);
}

.wedding-info-content.premium-content-box {
  border-left: 4px solid var(--color-theme);
}

/* Heading Styles Inside Premium Box */
.premium-content-box h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.premium-content-box h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-theme) 50%, transparent 100%);
  border-radius: 2px;
}


.premium-content-box h4 {
  position: relative;
  padding-left: 15px;
}

.premium-content-box h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-theme);
  border-radius: 50%;
}

/* Paragraph Styling */
.premium-content-box p {
  position: relative;
  padding-left: 15px;
}

.premium-content-box p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, rgba(136, 26, 19, 0.15) 0%, transparent 100%);
  border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .premium-content-box {
    padding: clamp(25px, 5vw, 35px) clamp(20px, 4vw, 30px);
    border-radius: clamp(12px, 2vw, 16px);
  }

  .premium-content-box::before,
  .premium-content-box::after {
    width: 50px;
    height: 50px;
  }

  .premium-content-box h2::after {
    width: 60px;
  }

}

/* Section Background Enhancement */
.seo-text-section,
.wedding-info-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
  position: relative;
}


/* ===========================
   PRIVACY POLICY PAGE
   =========================== */
.privacy-hero-section {
  padding: clamp(100px, 15vh, 140px) 0 clamp(60px, 10vh, 80px);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f3f7 100%);
  position: relative;
}

.privacy-hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(136, 26, 19, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.privacy-content-section {
  background: #ffffff;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.privacy-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(136, 26, 19, 0.1) 50%, transparent 100%);
}

.privacy-content-section .container {
  max-width: 900px;
}

.privacy-content-section h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
  color: #000000;
  font-weight: 700;
}

.privacy-content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-theme) 0%, #6d1510 100%);
  border-radius: 2px;
}

.privacy-content-section h3 {
  color: var(--color-theme);
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 16px;
}

.privacy-content-section p {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.privacy-content-section ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
}

.privacy-content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--color-theme);
  border-radius: 50%;
}

.privacy-content-section .mb-4 p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-style: italic;
}

.privacy-content-section .mb-5 {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.privacy-content-section .mb-5:last-child {
  border-bottom: none;
}

.privacy-content-section strong {
  color: #000000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-card {
    padding: clamp(20px, 4vw, 25px);
  }
}


/* ===========================
   GALLERY VIDEO STYLES
   =========================== */
.gallery-item-wrapper {
  transition: all 0.3s ease;
}

.gallery-item-wrapper[style*="display: none"] {
  display: none !important;
}

.video-play-icon {
  bottom: -2%;
  right: 0%;

  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(136, 26, 19, 0.85);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 0 rgba(136, 26, 19, 0.7);
  animation: videoPulse 2s ease-in-out infinite;
}

.video-play-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: ripple 2s ease-out infinite;
}

.video-play-icon svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.gallery-image-wrapper:hover .video-play-icon {
  background: rgba(136, 26, 19, 0.95);
  animation: videoPulseHover 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(136, 26, 19, 0.9);
}

.gallery-image-wrapper:hover .video-play-icon svg {
  transform: scale(1.1);
}

/* Pulse Animation for Video Icon */
@keyframes videoPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(136, 26, 19, 0.7);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 15px rgba(136, 26, 19, 0);
  }
}

@keyframes videoPulseHover {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 0 0 rgba(136, 26, 19, 0.9);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 0 20px rgba(136, 26, 19, 0);
  }
}

/* Ripple Effect */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.gallery-item video {
  object-fit: cover;
  height: 300px;
}

.gallery-item video::-webkit-media-controls {
  display: none !important;
}

.gallery-item video::-webkit-media-controls-enclosure {
  display: none !important;
}

.gallery-item-wrapper:hover video::-webkit-media-controls {
  display: flex !important;
}

.gallery-item-wrapper:hover video::-webkit-media-controls-enclosure {
  display: flex !important;
}


/* YouTube Video Styles */
.youtube-video-wrapper {
  cursor: pointer;
  position: relative;
}

.youtube-thumbnail {
  transition: transform 0.3s ease;
}

.youtube-video-wrapper:hover .youtube-thumbnail {
  transform: scale(1.05);
}

.youtube-iframe {
  height: 300px;
  object-fit: cover;
}