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

:root {
  --primary: #0052a3;
  --primary-light: #0066cc;
  --secondary: #f8f9fa;
  --dark: #1a1a1a;
  --light: #ffffff;
  --accent: #ff6b35;
  --accent-dark: #e55a2b;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
}

html {
  scroll-behavior: smooth;
}

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

/* Header & Navigation */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

header .contact-info {
  font-size: 0.9rem;
  opacity: 0.9;
}

header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

header nav a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

header nav a:hover {
  color: var(--accent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.hero-stat .label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--light);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255,107,53,0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--light);
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

footer h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

footer a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--accent);
}

footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Landing Page Styles */
.landing-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.landing-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.landing-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.content-section {
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--secondary);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.content-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content-section h3 {
  color: var(--dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* FAQ */
.faq-item {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  background-color: var(--light);
  border-radius: 4px;
}

.faq-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

/* Form */
.form-group {
  margin: 1.5rem 0;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-group.required label::after {
  content: ' *';
  color: var(--danger);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 82, 163, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.form-group.checkbox a {
  color: var(--primary);
  text-decoration: none;
}

.form-group.checkbox a:hover {
  text-decoration: underline;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: var(--light);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-banner .btn-accept {
  background-color: var(--accent);
  color: var(--light);
}

.cookie-banner .btn-decline {
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--light);
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.category-card {
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 16px rgba(0,82,163,0.1);
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.category-card ul {
  list-style: none;
  margin-left: 0;
}

.category-card li {
  margin: 0.75rem 0;
}

.category-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.category-card a:hover {
  color: var(--accent);
}

/* Service Cards */
.service-card {
  background: var(--light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  margin: 1rem 0;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgba(255,107,53,0.1);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card .price {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  margin: 1rem 0;
}

.service-card ul {
  margin-left: 1.5rem;
  margin: 1rem 0;
}

.service-card li {
  margin: 0.5rem 0;
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  header nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  header nav a {
    display: block;
    padding: 0.5rem 0;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .landing-hero h1 {
    font-size: 1.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

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