/* Complete Cleaning Solutions - Luxury Website Styles */

:root {
  --primary-gold: #C9A96E;
  --primary-dark: #2C2C2C;
  --primary-light: #F8F6F3;
  --neutral-warm: #F5F3F0;
  --neutral-medium: #8B8680;
  --neutral-dark: #4A4A4A;
  --accent-blue: #4A90A4;
  --accent-green: #7BA05B;
  --white: #FFFFFF;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-heavy: rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--primary-dark);
  background-color: var(--primary-light);
}

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

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

nav ul li a:hover {
  color: var(--primary-gold);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  box-shadow: 0 8px 16px var(--shadow-medium);
  z-index: 1;
  min-width: 180px;
  top: 100%;
  left: 0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--primary-dark);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.dropdown-content a:hover {
  background-color: var(--neutral-warm);
  color: var(--primary-gold);
}

.cta-button {
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #B8956B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--neutral-warm) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: var(--neutral-dark);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-banner {
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 15px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 20px 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  padding: 15px 30px;
  border: 2px solid var(--primary-dark);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background-color: #B8956B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-alt {
  background-color: var(--neutral-warm);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-dark);
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--neutral-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: var(--neutral-dark);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  margin-top: 20px;
  text-align: left;
}

.service-card ul li {
  padding: 5px 0;
  color: var(--neutral-dark);
  position: relative;
  padding-left: 20px;
}

.service-card ul li:before {
  content: "✓";
  color: var(--accent-green);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Location Cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.location-card h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.location-card .communities {
  color: var(--neutral-dark);
  font-style: italic;
  margin-bottom: 15px;
}

/* Form Styles */
.form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-light);
  margin: 30px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #E5E5E5;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

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

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

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

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

.footer-section p,
.footer-section a {
  color: #CCCCCC;
  text-decoration: none;
  line-height: 1.6;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #CCCCCC;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: var(--primary-gold);
  color: var(--white);
}

.cookie-btn.settings {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav ul li {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .cookie-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Booking Form Styles */
.booking-section {
  margin: 40px 0;
}

.booking-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  text-align: center;
}

.booking-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-tab {
  padding: 10px 20px;
  background-color: var(--neutral-warm);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.booking-tab.active {
  background-color: var(--primary-gold);
  color: var(--white);
}

.booking-tab:hover {
  background-color: var(--primary-gold);
  color: var(--white);
}

.booking-content {
  display: none;
}

.booking-content.active {
  display: block;
}

/* Professional styling for embedded forms */
iframe {
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-light);
}
