:root {
  --primary: #d4af37;
  --white: #ffffff;
  --black: #1a1a1a;
  --hover-bg: #f9f9f9;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--black);
}

.navbar {
  background: var(--white);
  padding: 1rem 2rem;
  border-bottom: 1px solid #eaeaea;
}

.logo a {
  color: var(--primary);
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
}

.services-section {
  padding: 4rem 2rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.services-section h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card h3 {
  color: var(--black);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.service-hover-box {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: var(--hover-bg);
  color: var(--black);
  transition: max-height 0.4s ease, opacity 0.4s ease;
  font-size: 0.95rem;
  padding: 0 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--primary);
}

.service-card:hover .service-hover-box {
  max-height: 150px;
  opacity: 1;
  padding: 1rem;
}

.service-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  margin-top: 4rem;
}
.cta-section {
  background: var(--primary);
  padding: 4rem 2rem;
  color: var(--white);
  text-align: center;
  margin-top: 4rem;
}

.cta-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--black);
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--black);
  color: var(--white);
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #333;
}
