/* CSS Variables */
:root {
  --primary: #c8a882;
  --primary-hover: #b39770;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --text: #333;
  --border: #ddd;
  --shadow: rgba(0,0,0,0.1);
  --shadow-lg: rgba(0,0,0,0.15);
  --white: #fff;
  --success: #d4edda;
  --success-text: #155724;
  --error: #f8d7da;
  --error-text: #721c24;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--dark);
  text-align: center;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

a {
  color: var(--primary);
  transition: color 0.3s;
}

a:hover {
  color: var(--primary-hover);
}

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

.section {
  padding: 80px 0;
}

.bg-light {
  background: var(--light);
}

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

.service-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px var(--shadow-lg);
}

.service-card svg {
  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

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

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

.price-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 5px 20px var(--shadow-lg);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-3px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin: 20px 0;
}

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

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light);
}

.price-card li:last-child {
  border-bottom: none;
}

.note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #666;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.info-item {
  margin-bottom: 15px;
  line-height: 1.8;
}

.info-item strong {
  display: inline-block;
  min-width: 140px;
  color: var(--dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

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

.cf-turnstile {
  margin: 10px 0;
}

.btn-submit {
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover:not(:disabled) {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 168, 130, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: var(--success);
  color: var(--success-text);
}

.form-status.error {
  background: var(--error);
  color: var(--error-text);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.footer p {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .price-card.featured {
    transform: scale(1);
  }
  
  .pricing-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .info-item strong {
    display: block;
    margin-bottom: 5px;
  }
}

/* Google Maps Styles */
.map-container {
  margin-top: 60px;
  width: 100%;
}

.map-container h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.map-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
}

.map-link {
  display: block;
  text-decoration: none;
  width: 100%;
}

.map-placeholder {
  background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
  padding: 60px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-placeholder:hover {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  transform: translateY(-2px);
}

.map-placeholder svg {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.map-placeholder:hover svg {
  transform: scale(1.1);
}

.map-placeholder p {
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.map-placeholder .address {
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.map-placeholder .view-map {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
}

.map-placeholder:hover .view-map {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .map-placeholder {
    min-height: 250px;
    padding: 40px 20px;
  }

  .map-container {
    margin-top: 40px;
  }
}
