/* ===================================
   GLOR BIENES RAÍCES - LUXURY REAL ESTATE
   Riviera Maya, Mexico
   ================================== */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&family=Raleway:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Colors */
  --primary: #0EA5E9;
  /* Sky Blue - Riviera Maya water */
  --secondary: #14B8A6;
  /* Teal */
  --accent: #F59E0B;
  /* Amber - sunset */
  --text-dark: #1F2937;
  /* Dark Gray */
  --text-light: #6B7280;
  /* Medium Gray */
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --whatsapp: #25D366;
  /* WhatsApp Green */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

/* === CONTAINER === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #0F9A8A;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: scale(1.05);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--bg-white);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1EBE5C;
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* === NAVIGATION === */
.navigation-bar,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(30, 30, 30, 0.4);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(20, 20, 20, 0.95);
  padding: 10px 60px;
}

.nav-left {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}

/* BRAND HEADER - ABSOLUTE CENTER - ESTILO AARON KIRMAN */
.brand-header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  display: flex;
  justify-content: center;
}

.brand-main {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 8px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Nav Item Styles */
.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.chevron {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  min-width: 200px;
  padding: 1rem 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 2rem;
}

.nav-contact {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-contact:hover {
  color: var(--primary);
}

.nav-icon {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-icon:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {

  .nav-left,
  .nav-contact,
  .search-trigger {
    display: none;
  }

  .nav-right {
    justify-content: flex-end;
  }

  .navbar,
  .navigation-bar {
    padding: 10px 20px;
  }

  .brand-main {
    font-size: 20px;
    letter-spacing: 6px;
  }

  .brand-subtitle {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .brand-main {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .brand-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s ease;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.1);
}

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

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  text-align: left;
  color: #fff;
  z-index: 1;
  padding: 0;
  max-width: none;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 0px;
  /* Reset bottom margin, using subtitle top margin instead */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: normal;
  max-width: 600px;
  margin: 16px 0 0 0;
  /* Top margin 16px as requested */
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
}

/* Responsive Adjustments for Hero Text Position */
@media (max-width: 1024px) {
  .hero-content {
    bottom: 60px;
    left: 60px;
  }

  /* Intermediate size if needed, or stick to desktop default until 768 */
}

@media (max-width: 768px) {
  .hero-content {
    bottom: 40px;
    left: 40px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

.hero-cta {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 1rem;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

.arrow {
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(5px);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

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

@media (max-width: 768px) {
  .hero-cta {
    bottom: 2rem;
    right: 50%;
    transform: translateX(50%);
    width: max-content;
  }

  .hero-cta:hover {
    transform: translateX(50%) scale(1.05);
  }
}

/* === SECTION SPACING === */
section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: -1;
}

/* Specific Section Backgrounds */
#properties .section-background {
  background-image: url('images/hero/hero_cancun_condo_1766071880927.png');
}

#services .section-background {
  background-image: url('images/hero/hero_playa_penthouse_1766071926554.png');
}

#why-choose {
  background-color: #FFFFFF;
  padding: 80px 0;
}

@media (max-width: 768px) {
  #why-choose {
    padding: 60px 0;
  }
}

/* Redesign Elements */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9CA3AF;
  text-align: center;
  margin-bottom: 8px;
}

.eyebrow-line {
  width: 60px;
  height: 1px;
  background: #D1D5DB;
  margin: 0 auto 24px;
}

#why-choose .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  color: #1F2937;
  text-align: center;
  text-transform: none;
  margin-bottom: 16px;
  text-shadow: none;
}

#why-choose .section-title::after {
  content: none;
  /* Remove default underline */
}

@media (max-width: 768px) {
  #why-choose .section-title {
    font-size: 32px;
  }
}

.section-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #6B7280;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

@media (max-width: 768px) {
  .section-subheading {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.why-glor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .why-glor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.stat-card {
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
  padding: 0;
  /* Reset padding */
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: transparent;
  /* Ensure no bg on hover */
}

#locations {
  background-color: #FFFFFF;
  padding: 80px 0;
}

#locations .section-background,
#locations .section-overlay {
  display: none;
}

/* Text color adjustment for dark backgrounds */
#properties .section-title,
#services .section-title,
#contact .section-title,
#services .service-card h3,
#services .service-card p {
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#why-choose .section-title,
#locations .section-title {
  color: #1F2937 !important;
  text-shadow: none;
}

#services .service-card,
#why-choose .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
}

#services .service-card:hover,
#why-choose .stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: #1F2937;
  line-height: 1.1;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 42px;
  }
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  text-shadow: none !important;
  /* Override global overrides */
}

@media (max-width: 768px) {
  .stat-label {
    font-size: 12px;
  }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  color: #1F2937;
  text-align: center;
  text-transform: none;
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--secondary);
  /* Teal accent */
  margin: 16px auto 0;
  border-radius: 0;
}

/* === FEATURED PROPERTIES === */
.properties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.property-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.property-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.property-card:hover .property-image {
  transform: scale(1.1);
}

.property-price {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  background: var(--accent);
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
}

.property-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 165, 233, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.property-card:hover .property-overlay {
  opacity: 1;
}

.property-overlay span {
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.property-details {
  padding: var(--spacing-md);
}

.property-details h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
}

.property-specs {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--text-light);
}

.property-specs span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.view-all-properties {
  text-align: center;
}

/* === ABOUT GLORIA === */
/* === ABOUT GLORIA === */
.about {
  position: relative;
  /* min-height removed, padding adjustments */
  padding: 80px 0;
  background-color: #FFFFFF;
  overflow: hidden;
  min-height: auto;
  /* Override previous min-height */
  display: block;
  /* Override flex */
}

/* Remove old background/overlay styles */
.about-background-slider,
.about-background-slide,
.about-overlay {
  display: none;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-Column Grid Layout */
/* Two-Column Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  /* Vertically align center */
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 45% 55%;
    /* More space for photo */
    gap: 60px;
    align-items: center;
  }
}

/* LEFT COLUMN: Photo */
.about-photo-column {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* Ensure full height for alignment */
}

.about-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Allow to fill the 45% column */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid #FFFFFF;
  transition: transform var(--transition-normal);
}

.about-photo-wrapper:hover {
  transform: scale(1.02);
}

.about-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT COLUMN: Content */
/* RIGHT COLUMN: Content */
.about-content-column {
  color: #4B5563;
  text-align: left;
}

.about-content-column * {
  text-shadow: none !important;
}

/* Text color adjustment for dark backgrounds */
#properties .section-title,
#services .section-title,
#services .service-card h3,
#services .service-card p,
#contact .section-title {
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Header */
.about-header {
  margin-bottom: 24px;
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  /* Regular */
  margin-bottom: 12px;
  color: #1F2937;
  line-height: 1.2;
  letter-spacing: 0;
}

.about-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Description */
.about-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #4B5563;
  max-width: 600px;
}

/* Key Points - Clean Bullets */
/* Key Points - Clean Bullets */
.about-key-points {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 0;
}

.about-key-points li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
}

.about-key-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: transparent;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1rem;
}

/* Contact Info */
.about-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  filter: none;
}

.contact-item a {
  font-family: 'Montserrat', sans-serif;
  color: #1F2937;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* Social Media Buttons */
.about-social-media {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
  transition: all var(--transition-normal);
  box-shadow: none;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.social-btn:hover {
  background: rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  filter: none;
}

/* CTA Button */
.about-cta-btn {
  margin-bottom: var(--spacing-xl);
  display: inline-block;
}

/* Testimonials in About Section */
.about-testimonials {
  margin-top: 40px;
  background: #F9FAFB;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid #E5E7EB;
  backdrop-filter: none;
  box-shadow: var(--shadow-md);
}

.testimonials-heading {
  color: #1F2937;
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.about-testimonial-carousel {
  position: relative;
  min-height: auto;
}

.about-testimonial-slide {
  display: none;
  text-align: center;
  padding: 0 10px;
}

.about-testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.about-testimonial-slide::before {
  content: '“';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  position: relative;
  display: block;
  line-height: 0.5;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #4B5563 !important;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1F2937 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonial Dots */
.about-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.about-testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.about-testimonial-dots button.active {
  background: var(--secondary);
  transform: scale(1.3);
}

.about-testimonial-dots button:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .about {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  .about-grid {
    gap: var(--spacing-lg);
  }

  .about-photo-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-name {
    font-size: 2rem;
  }

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

  .about-key-points li {
    font-size: 0.9rem;
  }

  .about-social-media {
    justify-content: center;
  }

  .about-testimonials {
    padding: var(--spacing-md);
  }
}

/* Remove old testimonials section styles */
.testimonials {
  display: none;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.service-card {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-svg {
  width: 48px;
  height: 48px;
  stroke: var(--secondary);
  stroke-width: 2;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

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

/* === LOCATIONS === */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

@media (min-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-card {
  position: relative;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.location-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.location-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.location-card:hover .location-background {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-md);
  color: var(--bg-white);
}

.location-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.location-tagline {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* === WHY CHOOSE GLOR === */
.why-choose {
  position: relative;
  z-index: 0;
}

.why-glor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .why-glor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

.stat-card {
  background: var(--bg-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: var(--spacing-xs);
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: none !important;
}

/* === CONTACT === */
.contact {
  position: relative;
  background-image: url('images/hero/hero_beachfront_villa_1766071844160.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--bg-white);
}

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

.contact-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  color: var(--bg-white);
  margin-bottom: var(--spacing-md);
}

.contact p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xl);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

/* === FOOTER === */
.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  /* Smaller, like label */
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  color: #9CA3AF;
  /* Light gray for labels */
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: var(--spacing-md);
}

.footer-section p {
  color: #D1D5DB;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: #D1D5DB;
  transition: color var(--transition-fast);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  color: #D1D5DB;
}

.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  font-size: 1.5rem;
  color: #D1D5DB;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: var(--spacing-md);
  text-align: center;
  color: #9CA3AF;
  font-size: 0.875rem;
}

/* === FADE IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: var(--spacing-sm);
}

.mt-2 {
  margin-top: var(--spacing-md);
}

.mt-3 {
  margin-top: var(--spacing-lg);
}

.mb-1 {
  margin-bottom: var(--spacing-sm);
}

.mb-2 {
  margin-bottom: var(--spacing-md);
}

.mb-3 {
  margin-bottom: var(--spacing-lg);
}

/* === RESPONSIVE IMAGES === */
@media (max-width: 767px) {
  .hero {
    min-height: 500px;
  }

  .hero-search {
    padding: var(--spacing-sm);
  }
}

/* === FULL SCREEN MENU === */
.full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(15px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.full-screen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
  color: var(--primary);
}

.menu-container {
  flex: 1;
  padding: 6rem 4rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: auto;
}

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

.menu-number {
  display: block;
  font-family: var(--font-subheading);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.menu-title {
  display: block;
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.menu-link {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: var(--primary);
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  margin-bottom: 0.5rem;
}

.menu-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.menu-list a:hover {
  color: #fff;
  transform: translateX(5px);
}

.menu-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  margin-top: 3rem;
}

.menu-footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.menu-footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.menu-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.menu-footer-col a:hover {
  color: var(--primary);
}

.menu-coverage {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.menu-social a {
  color: #fff;
  transition: transform 0.3s ease;
}

.menu-social a:hover {
  transform: translateY(-3px);
  color: var(--primary);
}

@media (max-width: 1024px) {

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

  .menu-container {
    padding: 4rem 2rem;
  }

  .menu-close {
    top: 1.5rem;
    right: 1.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}