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

:root {
  --primary-gold: #d4a574;
  --dark-blue: #2c3e50;
  --light-bg: #f5f1e8;
  --white: #ffffff;
  --text-dark: #333333;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Floating Contact Icons - STICKY */
.floating-contact-icons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-icon {
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-icon i {
  color: #d4a574 !important;
  font-size: 20px;
}

.floating-icon:hover {
  background: #f5f1e8 !important;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

/* Header */
header {
  background-color: var(--dark-blue);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-icons {
  display: flex;
  gap: 20px;
}

.contact-icons a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: var(--primary-gold);
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lang-btn, .access-btn {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.lang-btn:hover, .access-btn:hover {
  background: var(--primary-gold);
  color: var(--dark-blue);
}

.main-nav {
  padding: 15px 0;
  display: flex;
  align-items: center;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.logo-text p {
  font-size: 12px;
  margin: 0;
  color: var(--primary-gold);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.whatsapp-float i {
  color: #d4a574 !important;
  font-size: 24px;
}

.whatsapp-float:hover {
  background: #f5f1e8 !important;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

.desktop-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.desktop-nav a:hover {
  color: var(--primary-gold);
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  max-width: 600px;
}

/* Search Form */
.search-form {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  margin: -50px 0 50px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--light-bg);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.search-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.search-fields input,
.search-fields select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.search-fields input:focus,
.search-fields select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.search-fields button {
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-fields button:hover {
  background: #c49560;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Diana Voicu Section */
.diana-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #34495e 100%);
  color: var(--white);
  padding: 60px 0;
  margin: 50px 0;
}

.diana-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--dark-blue);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.diana-section h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 700;
}

.diana-subtitle {
  font-size: 20px;
  color: var(--primary-gold);
  margin-bottom: 40px;
}

.diana-content {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: 40px;
  border-radius: 8px;
  margin-top: 30px;
}

.diana-text h3 {
  color: var(--primary-gold);
  font-size: 24px;
  margin-bottom: 20px;
}

.diana-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.diana-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 2px solid var(--light-bg);
  border-bottom: 2px solid var(--light-bg);
}

.benefit {
  text-align: center;
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.benefit h4 {
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.benefit p {
  font-size: 14px;
  color: #666;
}

.diana-languages {
  font-weight: 600;
  color: var(--primary-gold);
  margin: 20px 0;
}

.cta-button {
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cta-button:hover {
  background: #c49560;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.3);
}

/* Last Minute Section */
.last-minute {
  padding: 60px 0;
  background: var(--white);
}

.last-minute h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.last-minute > .container > p {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.property-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.property-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.property-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
}

.property-card p {
  padding: 0 20px;
}

.property-location {
  color: var(--primary-gold);
  font-weight: 600;
  padding-top: 15px;
  font-size: 14px;
}

.property-card h3 {
  padding: 10px 20px 0;
  color: var(--dark-blue);
  font-size: 18px;
  margin: 10px 0;
}

.property-price {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px 0;
}

.property-details {
  color: #666;
  font-size: 14px;
  padding: 5px 20px 20px;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: var(--white);
}

.services-section h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--dark-blue);
  text-align: center;
}

.services-section > .container > p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--dark-blue);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 15px;
  filter: grayscale(100%);
  opacity: 0.9;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

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

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .diana-section h2 {
    font-size: 32px;
  }

  .floating-contact-icons {
    right: 10px;
    gap: 10px;
  }

  .floating-icon {
    width: 45px;
    height: 45px;
  }

  .floating-icon i {
    font-size: 18px;
  }

  .search-fields {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .diana-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .diana-section h2 {
    font-size: 24px;
  }

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

  .services-section h2 {
    font-size: 28px;
  }

  .floating-contact-icons {
    right: 5px;
    gap: 8px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
  }

  .floating-icon i {
    font-size: 16px;
  }
}
