/**
* Moraes de Carvalho Advogados - Premium Design
* Modern Law Firm Website Styles
*/

/*--------------------------------------------------------------
# CSS Variables - Paleta Premium
--------------------------------------------------------------*/
:root {
  /* Cores Principais */
  --navy-dark: #0a1628;
  --navy: #0f2137;
  --navy-light: #1a3355;
  --gold: #c9a96e;
  --gold-light: #d4b98a;
  --gold-dark: #b8944d;
  
  /* Neutros */
  --white: #ffffff;
  --cream: #f7f1e6;  /* Dourado claro - tom suave */
  --gray-100: #f8f9fa;
  --gray-200: #f1f3f5;
  --gray-300: #e9ecef;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  /* Tipografia */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.16);
  --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.2);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.2);
  
  /* Blur */
  --blur-sm: blur(8px);
  --blur-md: blur(16px);
  --blur-lg: blur(24px);
}

/*--------------------------------------------------------------
# Animações Globais
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(201, 169, 110, 0.5);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Classes de Animação */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s ease forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Delays de Animação */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.section-padding {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--navy-dark);
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.section-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.2), transparent);
  animation: shimmer 4s infinite;
}

.section-badge:hover {
  transform: scale(1.05);
  border-color: rgba(201, 169, 110, 0.5);
}

.section-badge-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

.section-title-lg {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 40px;
}

/*--------------------------------------------------------------
# Buttons - Modernos e Arredondados
--------------------------------------------------------------*/
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(201, 169, 110, 0.5);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: var(--transition-normal);
}

#header.header-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

#header.header-scrolled .logo-text,
#header.header-scrolled .navbar a {
  color: var(--navy-dark);
}

#header.header-scrolled .logo-subtitle {
  color: var(--gray-600);
}

#header .logo {
  display: flex;
  flex-direction: column;
}

#header .logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

#header .logo-subtitle {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 10px;
}

.navbar a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
}

.navbar a:hover,
.navbar .active {
  color: var(--gold);
}

.navbar .getstarted {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: 4px;
  margin-left: 20px;
  font-weight: 600;
}

.navbar .getstarted:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition-fast);
}

#header.header-scrolled .mobile-nav-toggle {
  color: var(--navy-dark);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.95);
    transition: var(--transition-fast);
    z-index: 999;
  }

  .navbar-mobile ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .navbar-mobile a {
    padding: 15px;
    font-size: 20px;
    color: var(--white);
  }

  .navbar-mobile .getstarted {
    margin: 20px 0 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #05101a 0%, var(--navy-dark) 40%, #0d1f35 80%, #122640 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

#hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(201, 169, 110, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease;
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.1s both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .text-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  text-align: center;
  transition: var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  animation: pulse 3s ease-in-out infinite;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

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

@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .hero-bg-logo {
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
  
  .hero-bg-logo-img {
    width: 400px;
    opacity: 0.12;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .hero-bg-logo {
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
  }
  
  .hero-bg-logo-img {
    width: 280px;
    opacity: 0.10;
  }
}

/*--------------------------------------------------------------
# Clients Carousel Section
--------------------------------------------------------------*/
.clients-section {
  background: var(--navy-dark);
  padding: 60px 0 80px;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.clients-header {
  text-align: center;
  margin-bottom: 40px;
}

.clients-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
}

.clients-carousel {
  padding: 20px 0;
}

.clients-carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: var(--transition-normal);
}

.client-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.client-logo img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.8;
  transition: var(--transition-normal);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.client-logo-text {
  min-width: 160px;
}

.client-logo-text span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-normal);
}

.client-logo-text:hover span {
  color: var(--gold);
}

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 0;
  }
  
  .client-logo {
    height: 90px;
    padding: 15px 20px;
  }
  
  .client-logo img {
    max-height: 55px;
    max-width: 140px;
  }
  
  .client-logo-text span {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--cream);
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.experience-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.experience-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  opacity: 0.9;
}

.about-content {
  padding-left: 40px;
}

.about-lead {
  font-size: 20px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text {
  color: var(--gray-600);
  margin-bottom: 30px;
}

.about-features {
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-item i {
  color: var(--gold);
  font-size: 20px;
}

.feature-item span {
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 60px;
  }
  
  .about-experience-badge {
    right: 20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
  }
  
  .experience-number {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  position: relative;
}

.why-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.why-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.why-box:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-box:hover::before {
  opacity: 1;
}

.why-box-featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  animation: glow 3s ease-in-out infinite;
}

.why-box-featured:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-10px) scale(1.05);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.why-box-featured .why-number {
  color: rgba(255, 255, 255, 0.2);
}

.why-icon {
  width: 65px;
  height: 65px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.why-box:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(201, 169, 110, 0.25);
}

.why-icon i {
  font-size: 28px;
  color: var(--gold);
  transition: var(--transition-normal);
}

.why-box:hover .why-icon i {
  transform: scale(1.1);
}

.why-box-featured .why-icon {
  background: rgba(255, 255, 255, 0.2);
}

.why-box-featured .why-icon i {
  color: var(--white);
}

.why-box h4 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 15px;
}

.why-box-featured p {
  color: rgba(255, 255, 255, 0.85);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: var(--transition-slow);
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  transition: var(--transition-slow);
  pointer-events: none;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(201, 169, 110, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s infinite;
}

.service-card:hover::after {
  bottom: -30%;
  right: -30%;
}

.service-card-featured {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border: none;
}

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

.service-card-featured h4,
.service-card-featured p {
  color: var(--white);
}

.service-card-featured .service-link {
  color: var(--gold);
}

.service-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition-normal);
  position: relative;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  animation: glow 1.5s ease-in-out infinite;
}

.service-icon i {
  font-size: 34px;
  color: var(--gold);
  transition: var(--transition-normal);
}

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

.service-card-featured .service-icon {
  background: rgba(201, 169, 110, 0.2);
}

.service-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--navy-dark);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.service-link:hover {
  gap: 12px;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  position: relative;
}

.faq-accordion .accordion-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-accordion .accordion-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateX(5px);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 22px 28px;
  box-shadow: none;
  transition: var(--transition-normal);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
  transition: var(--transition-normal);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9a96e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 0 28px 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  animation: fadeInUp 0.3s ease;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--cream);
  position: relative;
}

.contact-info-list {
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 22px;
  color: var(--gold);
}

.contact-details h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 5px;
}

.contact-details p {
  margin: 0;
  color: var(--gray-600);
  font-size: 15px;
}

.contact-form-wrapper {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 40px;
}

.contact-form .form-label {
  font-weight: 500;
  font-size: 14px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.contact-form .form-control {
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  font-size: 15px;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15), 0 10px 30px rgba(201, 169, 110, 0.1);
  outline: none;
  background: var(--white);
  transform: translateY(-2px);
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
  border-radius: 20px;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  display: none;
  padding: 15px;
  border-radius: 16px;
  text-align: center;
  animation: fadeInUp 0.3s ease;
}

.form-status .loading {
  background: var(--gray-200);
  color: var(--gray-700);
}

.form-status .error-message {
  background: #f8d7da;
  color: #842029;
}

.form-status .sent-message {
  background: #d1e7dd;
  color: #0f5132;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-premium {
  background: var(--navy-dark);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.footer-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer-contact i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form button {
  width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright,
.footer-bottom .credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.back-to-top i {
  font-size: 24px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Carousel Fix (hide the old carousel)
--------------------------------------------------------------*/
#carouselExampleDark,
.carousel-text {
  display: none !important;
}

/*--------------------------------------------------------------
# Logo Styles
--------------------------------------------------------------*/
#header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

#header .logo-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
}

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

#header .logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

/*--------------------------------------------------------------
# Hero Background Logo (Decorative)
--------------------------------------------------------------*/
.hero-bg-logo {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-logo-img {
  width: 550px;
  height: auto;
  opacity: 0.18;
  filter: sepia(30%) brightness(1.2) saturate(0.8);
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*--------------------------------------------------------------
# WhatsApp Buttons
--------------------------------------------------------------*/
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2EE675, #25D366);
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
  font-size: 20px;
  animation: pulse 2s infinite;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: var(--transition-normal);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
}

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

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

.btn-whatsapp-large:hover {
  background: linear-gradient(135deg, #2EE675, #25D366);
  color: var(--white) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-large i {
  font-size: 24px;
}

/*--------------------------------------------------------------
# WhatsApp Float Button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-bounce);
  animation: floatSlow 3s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse-ring 1.5s ease infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.whatsapp-float i {
  font-size: 32px;
  color: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--navy-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*--------------------------------------------------------------
# Footer Logo
--------------------------------------------------------------*/
.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(201, 169, 110, 0.3);
}

/*--------------------------------------------------------------
# Enhanced Service Cards
--------------------------------------------------------------*/
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: 'MC';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.05);
  line-height: 1;
  pointer-events: none;
}

.service-card-featured::after {
  color: rgba(255, 255, 255, 0.05);
}

/*--------------------------------------------------------------
# Enhanced Why Box
--------------------------------------------------------------*/
.why-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.why-box:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# Section Dividers with Logo Reference
--------------------------------------------------------------*/
.section-divider {
  text-align: center;
  padding: 20px 0;
}

.section-divider::before {
  content: 'MC';
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  opacity: 0.3;
}

/*--------------------------------------------------------------
# Responsive Overrides
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .section-title-lg {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title-lg {
    font-size: 36px;
  }
  
  .hero-logo-img {
    width: 80px;
    height: 80px;
  }
  
  #header .logo-img {
    width: 40px;
    height: 40px;
  }
  
  #header .logo-text-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title-lg {
    font-size: 32px;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .footer-main {
    padding: 60px 0 40px;
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 80px;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
  
  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary-gold,
  .hero-buttons .btn-outline-light,
  .hero-buttons .btn-whatsapp {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .hero-logo-img {
    width: 70px;
    height: 70px;
  }
}

/*--------------------------------------------------------------
# About Logo Overlay
--------------------------------------------------------------*/
.about-image-wrapper {
  position: relative;
}

.about-logo-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}

.about-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(201, 169, 110, 0.5);
  animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# Location Section with Map
--------------------------------------------------------------*/
.location-section {
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.02" fill="%23c9a96e">MC</text></svg>') repeat;
  background-size: 200px;
  pointer-events: none;
}

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

.section-badge-light {
  background: rgba(201, 169, 110, 0.2);
  color: var(--gold);
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.location-logo-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  opacity: 0.15;
  transform: rotate(15deg);
}

.location-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.location-info {
  position: relative;
  z-index: 2;
}

.location-info h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info h4 i {
  color: var(--gold);
}

.location-info p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

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

.btn-directions:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(201, 169, 110, 0.5);
}

.map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  transition: var(--transition-slow);
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.map-overlay-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  animation: fadeInDown 0.6s ease, floatSlow 4s ease-in-out infinite 1s;
  backdrop-filter: blur(10px);
}

.map-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.map-overlay-badge span {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-wrapper iframe {
  display: block;
}

/* Map pin animation */
@keyframes bounce-pin {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Location Section */
@media (max-width: 991px) {
  .location-card {
    padding: 25px;
  }
  
  .location-logo {
    width: 100px;
    height: 100px;
  }
  
  .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .map-overlay-badge {
    top: 10px;
    left: 10px;
    padding: 8px 14px;
  }
  
  .map-logo {
    width: 28px;
    height: 28px;
  }
  
  .map-overlay-badge span {
    font-size: 12px;
  }
  
  .map-wrapper iframe {
    height: 280px;
  }
  
  .about-logo-img {
    width: 60px;
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Location Section Premium with Building Image
--------------------------------------------------------------*/
.location-section-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}

.min-vh-75 {
  min-height: 75vh;
}

.location-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.location-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.85) 30%,
    rgba(10, 22, 40, 0.7) 60%,
    rgba(10, 22, 40, 0.5) 100%
  );
}

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

.location-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

.location-card-premium {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-top: 20px;
}

.location-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.location-logo-badge {
  flex-shrink: 0;
}

.location-logo-small {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(201, 169, 110, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.location-address h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-address p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.location-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(37, 211, 102, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid #25D366;
  color: #25D366;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

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

.btn-whatsapp-outline:hover {
  background: #25D366;
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.map-container-premium {
  position: relative;
  z-index: 2;
}

.map-frame {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(10, 22, 40, 0.9);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.map-header .map-logo {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.map-header span {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-frame iframe {
  display: block;
}

/* Responsive Location Premium */
@media (max-width: 991px) {
  .location-section-premium {
    min-height: auto;
    padding: 80px 0;
  }
  
  .min-vh-75 {
    min-height: auto;
  }
  
  .location-gradient-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 22, 40, 0.92) 0%,
      rgba(10, 22, 40, 0.88) 100%
    );
  }
  
  .location-content-premium {
    margin-bottom: 40px;
  }
  
  .map-frame iframe {
    height: 300px !important;
  }
}

@media (max-width: 576px) {
  .location-section-premium {
    padding: 60px 0;
  }
  
  .location-card-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .location-address h5 {
    justify-content: center;
  }
  
  .location-actions {
    justify-content: center;
  }
  
  .location-description {
    font-size: 16px;
  }
  
  .map-frame iframe {
    height: 250px !important;
  }
}

/*--------------------------------------------------------------
# Section Dividers - Transições Suaves
--------------------------------------------------------------*/
.section-divider {
  height: 120px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Dark to Light (clients → about, faq → contact) */
.section-divider.dark-to-light {
  background: linear-gradient(to bottom, var(--navy-dark) 0%, var(--cream) 100%);
}

/* Light to Dark (about → why-us, contact → location) */
.section-divider.light-to-dark {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--navy-dark) 100%);
}

/* Dark to Gray (why-us → services) */
.section-divider.dark-to-gray {
  background: linear-gradient(to bottom, var(--navy-dark) 0%, var(--cream) 100%);
}

/* Gray to Dark (services → faq) */
.section-divider.gray-to-dark {
  background: linear-gradient(to bottom, var(--cream) 0%, var(--navy-dark) 100%);
}

@media (max-width: 768px) {
  .section-divider {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .section-divider {
    height: 60px;
  }
}
