/* ========================================
   KENYA RELOCATION HUB - LUXURY DESIGN
   Inspired by Sotheby's & Christie's
   ======================================== */

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

:root {
  --primary: #0f3d3e;
  --secondary: #e2856e;
  --accent: #f4a261;
  --dark: #1a1a2e;
  --cream: #faf8f3;
  --white: #ffffff;
  --gray: #5a5a5a;
  --light-gray: #e8e4df;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== NAVIGATION ========== */
.luxury-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--primary);
}

.brand-initials {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid var(--primary);
}

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

/* ========== HERO ========== */
.hero-luxury {
  position: relative;
  height: 75vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  margin-top: 70px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--white);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid var(--white);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid var(--white);
}

.btn-hero-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* ========== NEIGHBORHOODS SHOWCASE ========== */
.neighborhoods-showcase {
  padding: 4rem 0;
  background: var(--cream);
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.section-intro p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

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

.neighborhood-feature {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.neighborhood-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: var(--secondary);
}

.neighborhood-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--dark);
}

.neighborhood-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.neighborhood-feature:hover .neighborhood-image::after {
  opacity: 1;
}

.neighborhood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.neighborhood-feature:hover .neighborhood-image img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 2;
}

.neighborhood-content {
  padding: 2rem;
}

.neighborhood-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.location-type {
  font-size: 0.8rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.description {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat .label {
  font-size: 0.7rem;
  color: var(--gray);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat .value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}

.link-arrow {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}

.link-arrow:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

/* ========== SERVICES ========== */
.services-luxury {
  padding: 4rem 0;
  background: var(--white);
}

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

.service-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.service-card.featured {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--primary);
  transition: var(--transition);
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card.featured .icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.service-card.featured:hover .icon {
  background: var(--accent);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-card.featured p {
  color: rgba(255,255,255,0.8);
}

/* ========== TESTIMONIAL ========== */
.testimonial-luxury {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5rem;
}

blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.avatar {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.author .name {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.author .details {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ========== FOOTER ========== */
.footer-luxury {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.social-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .container,
  .nav-wrapper,
  .hero-content {
    padding: 0 2rem;
  }
  
  .neighborhoods-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .btn-primary {
    display: none;
  }
  
  .hero-luxury {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    text-align: center;
  }
  
  .neighborhoods-showcase,
  .services-luxury,
  .testimonial-luxury {
    padding: 4rem 0;
  }
  
  .section-intro {
    margin-bottom: 3rem;
  }
  
  .neighborhood-image {
    height: 300px;
  }
  
  .neighborhood-content {
    padding: 2rem;
  }
  
  .stats-row {
    gap: 2rem;
  }
  
  blockquote {
    font-size: 1.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
}


/* ========== PAGE HERO ========== */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--cream);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 300;
}

/* ========== SERVICES DETAIL ========== */
.services-detail,
.about-content,
.values-section,
.blog-grid-section,
.contact-section {
  padding: 4rem 0;
}

.service-detail-card {
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--light-gray);
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-color: var(--secondary);
}

.service-detail-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2f30 100%);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(15,61,62,0.25);
}

.service-detail-card.featured:hover {
  box-shadow: 0 12px 40px rgba(15,61,62,0.35);
}

.service-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(15,61,62,0.08);
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
  transition: var(--transition);
}

.service-detail-card:hover .service-number {
  color: rgba(15,61,62,0.15);
  transform: scale(1.1);
}

.service-detail-card.featured .service-number {
  color: rgba(255,255,255,0.1);
}

.service-detail-card h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.service-detail-card h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.service-detail-card.featured h2 {
  color: var(--white);
}

.service-detail-card p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.service-detail-card.featured p {
  color: rgba(255,255,255,0.85);
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.feature-list li {
  padding: 1rem 1rem 1rem 2.5rem;
  position: relative;
  color: var(--primary);
  background: rgba(255,255,255,0.5);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.feature-list li:hover {
  background: var(--white);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-detail-card.featured .feature-list li {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-left-color: var(--accent);
}

.service-detail-card.featured .feature-list li:hover {
  background: rgba(255,255,255,0.15);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  padding: 4rem 0;
  background: var(--cream);
}

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

.pricing-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border: 1px solid var(--light-gray);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
}

.pricing-card.featured li {
  border-bottom-color: rgba(255,255,255,0.2);
}

.btn-pricing {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--primary);
}

.btn-pricing:hover {
  background: var(--white);
  color: var(--primary);
}

.pricing-card.featured .btn-pricing {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.pricing-card.featured .btn-pricing:hover {
  background: transparent;
  color: var(--white);
}

/* ========== ABOUT CONTENT ========== */
.about-content {
  padding: 6rem 0;
  background: var(--white);
}

.about-content {
  padding: 4rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.values-section {
  padding: 4rem 0;
  background: var(--cream);
}

.blog-grid-section {
  padding: 4rem 0;
  background: var(--white);
}

.contact-section {
  padding: 4rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ========== VALUES SECTION ========== */
.values-section {
  padding: 6rem 0;
  background: var(--cream);
}

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

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* ========== BLOG GRID SECTION ========== */
.blog-grid-section {
  padding: 6rem 0;
  background: var(--white);
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.blog-image {
  height: 250px;
  overflow: hidden;
}

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--primary);
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.blog-content p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 3rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--secondary);
  transform: translateX(5px);
}

.method-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.contact-method h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.contact-method p {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

.office-hours {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
}

.office-hours h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.office-hours p {
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--light-gray);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--light-gray);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--primary);
}

.btn-submit:hover {
  background: var(--white);
  color: var(--primary);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
}

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 1200px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 10rem 0 4rem;
  }
  
  .service-detail-card {
    padding: 2rem;
  }
  
  .service-number {
    font-size: 3rem;
    top: 1rem;
    right: 1rem;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
}


/* ========== AMENITIES LIST ========== */
.amenities-list {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  background: rgba(15, 61, 62, 0.02);
  padding: 1rem;
  border-radius: 4px;
}

.amenity {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray);
}

.amenity:last-child {
  margin-bottom: 0;
}

.amenity strong {
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  min-width: 85px;
}

/* ========== PACKAGE DESCRIPTION ========== */
.package-desc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pricing-card.featured .package-desc {
  color: rgba(255,255,255,0.8);
}

.pricing-card ul {
  min-height: 280px;
}

@media (max-width: 768px) {
  .amenities-list {
    padding: 1rem 0;
  }
  
  .amenity {
    font-size: 0.85rem;
  }
  
  .amenity strong {
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .pricing-card ul {
    min-height: auto;
  }
}


/* ========== TESTIMONIAL SLIDER ========== */
.testimonial-slider {
  position: relative;
  min-height: 300px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s;
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.prev-btn,
.next-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}


/* ========== SERVICES DETAIL BACKGROUND ========== */
.services-detail {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
}


/* ========== ABOUT PAGE ENHANCEMENTS ========== */
.about-content {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.stat-box {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--light-gray);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,61,62,0.2) 0%, transparent 100%);
  pointer-events: none;
}

.about-image img {
  transition: var(--transition);
}

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

.value-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 2px solid var(--light-gray);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.value-card h3 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.value-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}


/* ========== FOUNDER HIGHLIGHT ========== */
.founder-highlight {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #0a2f30 100%);
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(15,61,62,0.2);
}

.founder-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.founder-highlight h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.founder-title {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.founder-bio {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
}

/* ========== MISSION SECTION ========== */
.mission-section {
  padding: 5rem 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 25px rgba(244,162,97,0.3);
}

.mission-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.mission-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
}

/* ========== STATS ROW FULL WIDTH ========== */
.about-content .stats-row {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--light-gray);
}


/* ========== EMAIL LINK IN NAV ========== */
.email-link {
  color: var(--secondary) !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, rgba(226,133,110,0.1), rgba(244,162,97,0.1));
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px;
  border: 1px solid rgba(226,133,110,0.3);
  transition: var(--transition);
}

.email-link:hover {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226,133,110,0.3);
}

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


/* ========== BLOG POSTS FULL LAYOUT ========== */
.blog-posts-section {
  padding: 4rem 0;
  background: var(--white);
}

.blog-post-full {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid var(--light-gray);
}

.blog-post-full:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post-full:hover .post-image-wrapper img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content-full {
  display: flex;
  flex-direction: column;
}

.post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.post-content-full h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
  line-height: 1.3;
}

.post-content-full p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--accent);
  gap: 1rem;
}

@media (max-width: 992px) {
  .blog-post-full {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .post-image-wrapper {
    height: 250px;
  }
}


/* ========== CONTACT PAGE ENHANCEMENTS ========== */
.contact-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.contact-info h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.contact-method {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-method:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.method-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 12px;
}

.office-hours {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2f30 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 25px rgba(15,61,62,0.2);
}

.office-hours h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.office-hours p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.8rem;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 2px solid var(--light-gray);
}

.form-group label {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  background: var(--cream);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(226,133,110,0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--secondary), var(--accent);
  border: none;
  box-shadow: 0 4px 15px rgba(226,133,110,0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226,133,110,0.4);
}

.contact-info p {
  background: rgba(15,61,62,0.03);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}


/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  .container,
  .container-narrow {
    padding: 0 1.5rem;
  }
  
  /* Navigation */
  .nav-wrapper {
    padding: 0 1.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
  
  .brand-name {
    font-size: 0.9rem;
  }
  
  /* Hero */
  .hero-luxury {
    height: 60vh;
    min-height: 450px;
    margin-top: 60px;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Sections */
  .neighborhoods-showcase,
  .services-luxury,
  .testimonial-luxury,
  .page-hero,
  .services-detail,
  .about-content,
  .values-section,
  .blog-posts-section,
  .contact-section,
  .pricing-section {
    padding: 3rem 0;
  }
  
  .section-intro {
    margin-bottom: 2rem;
  }
  
  .section-intro h2 {
    font-size: 2rem;
  }
  
  .section-intro p {
    font-size: 1rem;
  }
  
  /* Neighborhoods */
  .neighborhoods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .neighborhood-image {
    height: 250px;
  }
  
  .neighborhood-content {
    padding: 1.5rem;
  }
  
  .neighborhood-content h3 {
    font-size: 1.5rem;
  }
  
  .amenities-list {
    padding: 0.8rem;
  }
  
  .amenity {
    font-size: 0.8rem;
  }
  
  .amenity strong {
    display: block;
    margin-bottom: 0.3rem;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card .icon {
    width: 50px;
    height: 50px;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  /* Service Detail */
  .service-detail-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-number {
    font-size: 3rem;
    top: 0.5rem;
    right: 1rem;
  }
  
  .service-detail-card h2 {
    font-size: 1.5rem;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .feature-list li {
    padding: 0.8rem 0.8rem 0.8rem 2rem;
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  /* Testimonials */
  .testimonial-slider {
    min-height: 400px;
  }
  
  blockquote {
    font-size: 1.1rem;
  }
  
  .testimonial-controls {
    gap: 1rem;
  }
  
  .prev-btn,
  .next-btn {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-box {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .founder-highlight {
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
  }
  
  .founder-icon {
    margin: 0 auto;
  }
  
  .mission-section {
    padding: 3rem 0;
  }
  
  .mission-content h2 {
    font-size: 2rem;
  }
  
  .mission-content p {
    font-size: 1rem;
  }
  
  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  /* Blog */
  .blog-post-full {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }
  
  .post-image-wrapper {
    height: 220px;
  }
  
  .post-content-full h2 {
    font-size: 1.5rem;
  }
  
  .post-content-full p {
    font-size: 0.95rem;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
  
  .contact-methods {
    gap: 1rem;
  }
  
  .contact-method {
    padding: 1.2rem;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .office-hours {
    padding: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  /* Footer */
  .footer-luxury {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .footer-brand,
  .footer-links {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-float svg {
    width: 25px;
    height: 25px;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 6rem 0 3rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero p {
    font-size: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-intro h2 {
    font-size: 1.8rem;
  }
  
  .neighborhood-content h3,
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .pricing-card h3 {
    font-size: 1.3rem;
  }
  
  .price {
    font-size: 2rem;
  }
}


/* ========== 3D HERO EFFECTS ========== */
.hero-title-animated .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.hero-title-animated .line:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-title-animated .line:nth-child(2) {
  animation-delay: 0.3s;
}

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

/* Floating 3D Cards */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.float-card:hover {
  transform: scale(1.1) translateY(-10px) !important;
}

.float-card:nth-child(1) {
  animation-delay: 0s;
}

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

.float-card:nth-child(3) {
  animation-delay: 4s;
}

.card-icon {
  font-size: 2rem;
}

.card-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* Parallax Effect on Scroll */
.hero-image img {
  transition: transform 0.5s ease-out;
}

/* 3D Tilt Effect on Hero Content */
.hero-content {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

/* Mobile - Hide floating cards */
@media (max-width: 768px) {
  .floating-elements {
    display: none;
  }
}


/* ========== FOUNDER PHOTO 3D ========== */
.founder-photo-3d {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  animation: float3d 6s ease-in-out infinite;
}

.founder-photo-3d:hover {
  transform: scale(1.1) rotateY(10deg);
}

.founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.3),
    0 0 0 8px rgba(244,162,97,0.1),
    0 0 0 15px rgba(244,162,97,0.05);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.founder-photo-3d:hover .founder-photo {
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.4),
    0 0 0 10px rgba(244,162,97,0.15),
    0 0 0 20px rgba(244,162,97,0.08);
}

.photo-float-bg {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-50px);
  opacity: 0.2;
  filter: blur(20px);
  animation: pulse 4s ease-in-out infinite;
}

.photo-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 6px 15px rgba(244,162,97,0.4);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}

.photo-ring {
  position: absolute;
  width: 115px;
  height: 115px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}

.photo-ring::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent);
}

@keyframes float3d {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-10px) rotateY(5deg);
  }
  50% {
    transform: translateY(-5px) rotateY(-5deg);
  }
  75% {
    transform: translateY(-8px) rotateY(3deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) translateZ(-50px) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) translateZ(-50px) scale(1.1);
    opacity: 0.3;
  }
}

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

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .founder-photo-3d {
    width: 120px;
    height: 120px;
  }
  
  .founder-photo {
    width: 120px;
    height: 120px;
  }
  
  .photo-float-bg {
    width: 140px;
    height: 140px;
  }
  
  .photo-ring {
    width: 140px;
    height: 140px;
  }
}
