/* Maximum PLEK Landing Pages - Core Styles */
:root {
  --primary: #c9a227;
  --dark: #1a1a1a;
  --light: #f8f8f8;
  --text: #333;
  --text-light: #666;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text);
}

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

/* Header */
.header {
  background: var(--dark);
  padding: 15px 0;
}

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

.header__logo {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  margin-left: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff !important;
}

.header__phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.header__phone:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: #fff;
  padding: 80px 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero__features {
  list-style: none;
  margin-bottom: 30px;
}

.hero__features li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.hero__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Form */
.form-card {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.form-card__title {
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 5px;
  text-align: center;
}

.form-card__subtitle {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

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

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 15px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background: var(--light);
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 50px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.benefit__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Why PLEK Section */
.why-plek {
  padding: 80px 0;
}

.why-plek__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-plek__content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.why-plek__content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.why-plek__image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Local Info Section */
.local-info {
  padding: 60px 0;
  background: var(--dark);
  color: #fff;
}

.local-info h2 {
  text-align: center;
  margin-bottom: 30px;
}

.local-info__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.local-info p {
  opacity: 0.9;
  margin-bottom: 15px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--dark);
  opacity: 0.8;
}

.cta__phone {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.2s;
}

.cta__phone:hover {
  transform: translateY(-2px);
}

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

.footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid,
  .why-plek__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero {
    padding: 50px 0;
  }

  .form-card {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .header__inner {
    flex-direction: column;
    gap: 10px;
  }

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

/* Success Message */
.success-message {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
}

/* Premium Badge */
.premium-badge {
  background: linear-gradient(135deg, #c9a227 0%, #e8c547 100%);
  color: var(--dark);
}
