/*
Theme Name: ACA & CO Real Estate Theme
Theme URI: https://acapropertyltd.com
Author: ACA & CO
Author URI: https://acapropertyltd.com
Description: Professional real estate theme for (Assets and Construction Allied Company Limited) ACA & CO - Creating Habitat For Humanity. Specializing in property sales, land acquisition, and real estate brokerage in Ile-Ife, Osun State, Nigeria.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aca-theme
Tags: real-estate, one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* ===== CSS Variables / Design Tokens ===== */
:root {
  --color-background: hsl(0, 0%, 100%);
  --color-foreground: hsl(0, 0%, 10%);
  --color-card: hsl(0, 0%, 100%);
  --color-card-foreground: hsl(0, 0%, 10%);
  --color-primary: hsl(0, 0%, 10%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-secondary: hsl(0, 0%, 96%);
  --color-secondary-foreground: hsl(0, 0%, 10%);
  --color-muted: hsl(0, 0%, 96%);
  --color-muted-foreground: hsl(0, 0%, 45%);
  --color-accent: hsl(0, 85%, 45%);
  --color-accent-foreground: hsl(0, 0%, 100%);
  --color-border: hsl(0, 0%, 90%);
  --color-whatsapp: hsl(142, 70%, 49%);
  
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-accent: 0 10px 40px -10px hsl(0, 85%, 45%, 0.3);
  
  --container-max: 80rem;
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

/* ===== Utility Classes ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.text-gradient {
  background: linear-gradient(to right, var(--color-accent), hsl(0, 70%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 85%, 40%);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

.site-logo img {
  height: 3rem;
  width: auto;
  transition: transform var(--transition-fast);
}

@media (min-width: 768px) {
  .site-logo img {
    height: 3.5rem;
  }
}

.site-logo:hover img {
  transform: scale(1.02);
}

/* Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  transition: color var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-normal);
}

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

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--color-accent);
}

.header-phone svg {
  width: 1rem;
  height: 1rem;
  animation: ring 0.5s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--color-foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.mobile-nav.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  text-transform: capitalize;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-accent);
  background: rgba(0, 0, 0, 0.03);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-foreground);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: hsl(0, 85%, 40%);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-accent-foreground);
}

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

.btn-whatsapp:hover {
  background: hsl(142, 70%, 40%);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  height: 3.5rem;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(26, 26, 26, 0.7) 100%);
  backdrop-filter: blur(2px);
}

.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(0, 85%, 45%, 0.2);
  animation: pulse 5s ease-in-out infinite;
}

.hero-glow-2 {
  bottom: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: hsla(0, 85%, 45%, 0.15);
  animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.6s ease-out;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(30, 20%, 90%);
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(30, 20%, 85%);
  max-width: 32rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

/* Hero Contact Info */
.hero-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  transition: transform var(--transition-fast);
}

.hero-contact-item:hover {
  transform: translateX(5px);
}

.hero-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.hero-contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
}

.hero-contact-text {
  font-weight: 500;
}

/* Hero Form */
.hero-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

@media (min-width: 1024px) {
  .hero-form-wrapper {
    justify-content: flex-end;
  }
}

.hero-form-card {
  width: 100%;
  max-width: 28rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.form-hot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-xl);
  animation: scalePulse 2s ease-in-out infinite;
}

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

.form-title {
  font-size: 1.5rem;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

.form-subtitle strong {
  color: var(--color-accent);
  font-weight: 600;
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.form-trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: hsl(142, 70%, 45%);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.form-trust-available {
  color: var(--color-accent);
}

.form-trust-separator {
  color: var(--color-muted-foreground);
}

.form-trust-text {
  color: var(--color-muted-foreground);
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px hsla(0, 85%, 45%, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted-foreground);
}

.form-textarea {
  min-height: 80px;
  resize: none;
}

.form-submit {
  width: 100%;
  height: 3.5rem;
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  background: hsl(0, 85%, 40%);
  transform: translateY(-2px);
}

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

.form-submit:hover::before {
  left: 100%;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

/* ===== Trust Badges Section ===== */
.trust-badges {
  background: var(--color-secondary);
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .trust-badges {
    padding: 3rem 0;
  }
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .badges-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

@media (min-width: 768px) {
  .badge-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.badge-item:hover .badge-icon {
  transform: scale(1.1) rotate(5deg);
}

.badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .badge-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.badge-text h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground);
}

@media (min-width: 768px) {
  .badge-text h3 {
    font-size: 1rem;
  }
}

.badge-text p {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

@media (min-width: 768px) {
  .badge-text p {
    font-size: 0.875rem;
  }
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
}

/* ===== About Section ===== */
.about-section {
  background: var(--color-background);
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-content p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-content strong {
  color: var(--color-foreground);
}

.about-content .highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.stat-item:hover {
  transform: scale(1.05);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.5rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

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

.value-card {
  padding: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.value-card:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px hsla(0, 85%, 45%, 0.2);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
}

.value-card:hover .value-icon {
  transform: rotate(5deg) scale(1.1);
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

/* ===== Services Section ===== */
.services-section {
  background: var(--color-secondary);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.service-card {
  padding: 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -20px hsla(0, 85%, 45%, 0.2);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
  transform: rotate(5deg) scale(1.05);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-accent);
  transition: color var(--transition-normal);
}

.service-card:hover .service-icon svg {
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-muted-foreground);
  line-height: 1.7;
}

/* ===== Featured Listings Section ===== */
.listings-section {
  background: var(--color-background);
}

/* Location Dropdown */
.location-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.location-dropdown {
  position: relative;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  min-width: 250px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.location-btn:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
}

.location-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.location-btn svg:first-child {
  color: var(--color-accent);
}

.location-btn svg:last-child {
  color: var(--color-muted-foreground);
  transition: transform var(--transition-fast);
}

.location-dropdown.active .location-btn svg:last-child {
  transform: rotate(180deg);
}

.location-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  z-index: 50;
}

.location-dropdown.active .location-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.location-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  transition: background var(--transition-fast);
}

.location-option:hover {
  background: var(--color-secondary);
}

.location-option.active {
  background: hsla(0, 85%, 45%, 0.1);
  color: var(--color-accent);
  font-weight: 500;
}

.location-option svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}

/* Property Cards */
.properties-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.property-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.property-card:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -15px hsla(0, 85%, 45%, 0.2);
}

.property-image {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

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

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

.property-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 500;
  color: white;
}

.property-badge-icon {
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.2);
  border-radius: 50%;
  font-size: 0.5rem;
}

.property-details {
  padding: 1rem;
}

.property-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.property-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.property-card:hover .property-title {
  color: var(--color-accent);
}

.property-price {
  text-align: right;
  flex-shrink: 0;
}

.property-price-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-accent);
  white-space: nowrap;
}

.property-price-note {
  font-size: 0.625rem;
  color: var(--color-muted-foreground);
}

.property-description {
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.property-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--color-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  color: var(--color-muted-foreground);
}

.property-feature svg {
  width: 0.75rem;
  height: 0.75rem;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.75rem;
}

.property-location svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--color-accent);
}

.property-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.property-cta:hover {
  background: hsl(0, 85%, 40%);
}

.property-cta svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Listings CTA */
.listings-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.listings-cta p {
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

/* ===== Properties Section ===== */
.properties-section {
  background: var(--color-background);
}

.property-card-lg {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.property-card-lg:hover {
  border-color: hsla(0, 85%, 45%, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -20px hsla(0, 85%, 45%, 0.2);
}

.property-card-lg .property-image {
  height: 14rem;
}

.property-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.property-card-lg .property-details {
  padding: 1.5rem;
}

.property-card-lg .property-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.property-card-lg .property-location {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.property-card-lg .property-features {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.property-card-lg .property-feature {
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
}

.property-card-lg .property-feature svg {
  width: 1rem;
  height: 1rem;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.property-footer .property-price-value {
  font-size: 1rem;
}

.property-footer .btn {
  gap: 0.25rem;
}

/* ===== Why Us Section ===== */
.why-us-section {
  background: var(--color-secondary);
}

.why-us-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.reasons-list {
  display: grid;
  gap: 1rem;
}

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

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.reason-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: transform var(--transition-fast);
}

.reason-item:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.reason-item span {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .reason-item span {
    font-size: 1rem;
  }
}

/* Stats Card */
.stats-card {
  background: var(--color-foreground);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-card {
    padding: 2.5rem;
  }
}

.stats-glow-1,
.stats-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.stats-glow-1 {
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: hsla(0, 85%, 45%, 0.2);
  animation: pulse 4s ease-in-out infinite;
}

.stats-glow-2 {
  bottom: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background: hsla(0, 85%, 45%, 0.1);
  animation: pulse 3s ease-in-out infinite 1s;
}

.stats-sparkle {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  color: hsla(0, 85%, 45%, 0.5);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stats-content {
  position: relative;
  z-index: 10;
}

.stats-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    gap: 2rem;
  }
}

.stat-box {
  text-align: center;
}

.stat-box .stat-value {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-box .stat-value {
    font-size: 2.5rem;
  }
}

.stat-box .stat-value:hover {
  transform: scale(1.1);
}

.stat-box .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Reviews Section ===== */
.reviews-section {
  background: var(--color-background);
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

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

.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
  }
}

.review-card:hover {
  border-color: hsla(0, 85%, 45%, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px hsla(0, 85%, 45%, 0.15);
}

.review-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  color: hsla(0, 85%, 45%, 0.2);
  animation: wiggle 5s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-accent);
  color: var(--color-accent);
}

.review-content {
  color: var(--color-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.review-avatar:hover {
  transform: scale(1.1);
}

.review-avatar span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
}

.review-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.review-info p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* Overall Rating */
.overall-rating {
  text-align: center;
  margin-top: 3rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.rating-badge:hover {
  transform: scale(1.05);
}

.rating-badge .review-stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rating-badge strong {
  font-weight: 600;
}

.rating-badge span {
  color: var(--color-muted-foreground);
}

/* ===== Map Section ===== */
.map-section {
  background: var(--color-secondary);
}

.map-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .map-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.map-content p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

.map-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.map-address-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.map-address-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
}

.map-address-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.map-address-text p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0;
}

.map-embed-wrapper {
  position: relative;
}

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid hsla(0, 85%, 45%, 0.2);
  box-shadow: var(--shadow-2xl);
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.map-glow {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background: hsla(0, 85%, 45%, 0.2);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--color-foreground);
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: bgSlide 20s linear infinite alternate;
}

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

.cta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37.5rem;
  height: 25rem;
  background: hsla(0, 85%, 45%, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse 6s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(0, 85%, 45%, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 85%, 45%, 0.3);
  border-radius: var(--radius-full);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: scalePulse 2s ease-in-out infinite;
}

.cta-badge svg {
  width: 1rem;
  height: 1rem;
}

.cta-title {
  font-size: 1.875rem;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.cta-subtitle strong {
  color: var(--color-accent);
  font-weight: 700;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  height: 4rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 10px 40px -10px hsla(0, 85%, 45%, 0.5);
}

.cta-btn-primary:hover {
  background: hsl(0, 85%, 40%);
  transform: translateY(-2px);
}

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

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

.cta-btn-whatsapp {
  background: var(--color-whatsapp);
  color: white;
  box-shadow: var(--shadow-xl);
}

.cta-btn-whatsapp:hover {
  background: hsl(142, 70%, 40%);
  transform: translateY(-2px);
}

.cta-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.cta-btn-primary svg {
  animation: ring 0.6s ease-in-out infinite;
  animation-delay: 2s;
}

.cta-address {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-address p:first-child {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.cta-address p:nth-child(2) {
  font-weight: 500;
  color: white;
}

.cta-address p:last-child {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-foreground);
  color: white;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

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

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

/* Footer Company */
.footer-company .footer-logo {
  height: 3.5rem;
  width: auto;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.25rem;
  margin-bottom: 1rem;
}

.footer-company p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--color-accent);
  font-weight: 600;
  font-style: italic;
}

.footer-rc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* Footer Links */
.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  transition: color var(--transition-fast);
}

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

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-contact-item:hover {
  color: var(--color-accent);
}

.footer-contact-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-icon {
  background: hsla(0, 85%, 45%, 0.2);
}

.footer-contact-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}

/* Footer Social */
.footer-social p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 85%, 45%, 0.1);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

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

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.social-link:hover svg {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--color-whatsapp);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .whatsapp-btn {
    width: 4rem;
    height: 4rem;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

@media (min-width: 768px) {
  .whatsapp-btn svg {
    width: 2rem;
    height: 2rem;
  }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

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

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

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out forwards;
}

/* Stagger delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== WordPress Core Styles ===== */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.5rem;
}

.sticky,
.bypostauthor {
  /* Placeholder for sticky posts and post author comments */
}

.gallery-caption {
  font-size: 0.875rem;
}

/* ===== Responsive Images ===== */
.wp-block-image img,
.wp-block-media-text__media img {
  max-width: 100%;
  height: auto;
}

/* ===== Block Editor Styles ===== */
.entry-content > * {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignwide {
  max-width: calc(var(--container-max) + 10rem);
}

.entry-content > .alignfull {
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
