/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --gold-50: #fdf9e8;
  --gold-100: #f9f0c3;
  --gold-200: #f5e08a;
  --gold-300: #e8c94a;
  --gold-400: #d4b11f;
  --gold-500: #c9a227;
  --gold-600: #b08a1e;
  --gold-700: #8f6d1b;
  --gold-800: #765819;
  --gold-900: #644918;
  
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  
  --white: #ffffff;
  --black: #000000;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold-500); }
.text-gray { color: var(--gray-600); }

.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-gray-950 { background-color: var(--gray-950); }

/* Gradient Text */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient Backgrounds */
.gradient-gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 50%, var(--gold-500) 100%);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 50%, var(--gold-500) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

/* Cards */
.card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition);
}

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

.card-dark {
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--gray-700);
}

.card-dark:hover {
  border-color: rgba(201, 162, 39, 0.5);
}

/* Section Spacing */
.section {
  padding: 6rem 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.badge-gold {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-400);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.badge-gold-light {
  background: var(--gold-100);
  color: var(--gold-700);
}

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

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

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

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

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

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

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

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

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

@keyframes pulseGold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

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

.animate-shimmer {
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-300) 25%, var(--gold-500) 50%, var(--gold-300) 75%, var(--gold-500) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.animate-twinkle {
  animation: twinkle 3s ease-in-out infinite;
}

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

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

.animate-pulse-gold {
  animation: pulseGold 2s infinite;
}

.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; }

/* Header/Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

.header.scrolled .nav-link:hover {
  color: var(--gold-600);
}

.header.scrolled .logo img {
  filter: none;
}

.header-transparent {
  background: transparent;
}

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

.logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}

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

.nav-link.active {
  color: var(--gold-400);
}

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  color: var(--white);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--gray-900);
  padding: 1rem;
  border-top: 1px solid var(--gray-800);
}

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

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all var(--transition);
}

.hero-indicator.active {
  background: var(--gold-500);
  border-color: var(--gold-400);
  transform: scale(1.2);
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 8rem 1.5rem 4rem;
}

.hero-logo {
  height: 140px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 2.5rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.stat-info h4 {
  color: var(--gold-300);
  font-size: 0.875rem;
  font-weight: 600;
}

.stat-info p {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin: 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge {
  margin-bottom: 1rem;
}

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

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: 1.125rem;
}

.section-header-dark p {
  color: var(--gray-400);
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
  transition: all var(--transition);
}

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

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--gray-400);
  margin: 0;
}

/* Project Cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.project-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.status-completed { background: #22c55e; }
.status-ongoing { background: var(--gold-500); animation: pulse 2s infinite; }
.status-upcoming { background: #3b82f6; }
.status-planning { background: #8b5cf6; }

.project-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-800);
}

.project-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.project-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-200);
  font-size: 0.875rem;
}

.project-location svg {
  width: 16px;
  height: 16px;
}

.project-content {
  padding: 1.5rem;
}

.project-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.project-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: var(--gold-50);
  color: var(--gold-700);
  font-size: 0.75rem;
  border-radius: 9999px;
}

.feature-tag svg {
  width: 12px;
  height: 12px;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-400);
  color: var(--gold-400);
}

.project-rating span {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-left: 0.5rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-600);
  font-weight: 500;
  transition: all var(--transition);
}

.project-link:hover {
  color: var(--gold-700);
}

.project-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

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

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  transition: all var(--transition);
}

.amenity-card:hover {
  background: var(--gold-50);
  border-color: var(--gold-200);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  transform: scale(1.1);
}

.amenity-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-600);
  transition: color var(--transition);
}

.amenity-card:hover .amenity-icon svg {
  color: var(--white);
}

.amenity-card p {
  font-weight: 500;
  color: var(--gray-800);
  margin: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-200);
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-400);
  color: var(--gold-400);
}

.testimonial-author {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

.testimonial-author h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--gold-600);
  font-size: 0.875rem;
}

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

.contact-form-card {
  padding: 2rem;
}

.contact-form-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(55, 65, 81, 0.5);
  border: 1px solid var(--gray-600);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

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

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-select option {
  background: var(--gray-800);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success,
.form-error {
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 1rem;
  display: none;
}

.form-success {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-details h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0;
  transition: color var(--transition);
}

.contact-details a:hover {
  color: var(--gold-400);
}

.contact-cta {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-cta img {
  height: 80px;
  width: auto;
}

.contact-cta h4 {
  color: var(--gold-400);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.contact-cta p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--gray-950);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 96px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--gray-400);
  max-width: 400px;
}

.footer-title {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: var(--gray-400);
  transition: color var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulseGold 2s infinite;
}

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* About Page Specific */
.about-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  transition: transform 0.7s ease;
}

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

.about-image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 384px;
  height: 384px;
  background: linear-gradient(to right, var(--gold-200), var(--gold-100), var(--gold-200));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  animation: spin 20s linear infinite;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-xl);
}

.about-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  transition: all var(--transition);
}

.highlight-item:hover {
  background: var(--gold-50);
}

.highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
}

.highlight-item span {
  font-weight: 500;
  color: var(--gray-700);
}

/* Vision/Mission Cards */
.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vision-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gold-200);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 1rem 1rem 0 0;
}

.vision-card-bg {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-300);
  border-radius: 1rem;
  z-index: -1;
}

.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.vision-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.vision-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gray-800);
  line-height: 1.6;
}

.vision-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.vision-divider span {
  color: var(--gold-600);
  font-weight: 600;
}

.vision-divider::before {
  content: '';
  width: 48px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 2px;
}

.vision-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.vision-tag {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--gold-200);
  color: var(--gold-700);
  border-radius: 9999px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: default;
}

.vision-tag:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
}

/* Mission Section */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mission-card {
  padding: 2rem;
}

.mission-card .feature-icon {
  margin-bottom: 1.5rem;
}

.mission-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mission-card p {
  color: var(--gray-400);
  margin: 0;
  line-height: 1.7;
}

.mission-quote {
  background: linear-gradient(to right, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 1rem;
  padding: 2rem 3rem;
  text-align: center;
}

.mission-quote p {
  font-size: 1.25rem;
  color: var(--gray-200);
  line-height: 1.8;
  margin: 0;
}

.mission-quote strong {
  color: var(--gold-400);
}

/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500), var(--gold-600));
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 0L0 0 0 60' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 1.5rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.btn-white {
  background: var(--white);
  color: var(--gold-600);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--gray-100);
  transform: scale(1.05);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Contact Page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  color: var(--gray-900);
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin: 0;
  display: block;
}

.contact-info-text a:hover {
  color: var(--gold-600);
}

.contact-form-light {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-light h3 {
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.form-input-light,
.form-textarea-light,
.form-select-light {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  color: var(--gray-800);
  font-size: 1rem;
  transition: all var(--transition);
}

.form-input-light::placeholder,
.form-textarea-light::placeholder {
  color: var(--gray-400);
}

.form-input-light:focus,
.form-textarea-light:focus,
.form-select-light:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-textarea-light {
  min-height: 120px;
  resize: vertical;
}

.form-select-light {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Map Section */
.map-section {
  margin-top: 3rem;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .contact-grid,
  .about-content,
  .vision-content,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    text-align: center;
  }
  
  .about-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header .btn {
    display: none;
  }
  
  .hero-content {
    padding: 6rem 1rem 3rem;
  }
  
  .hero-logo {
    height: 100px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
  
  .footer-contact li {
    justify-content: center;
    text-align: left;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 2rem;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .logo img {
    height: 56px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
