/* Admin Dashboard Styles */
.dashboard {
  padding: 48px 0 32px 0;
  max-width: 800px;
  margin: 0 auto;
}
.dashboard h1 {
  color: var(--accent-blue);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.editor-box {
  background: rgba(61, 65, 38, 0.85);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.1);
  padding: 32px 24px 24px 24px;
  margin-bottom: 32px;
}
.editor-box h3 {
  color: var(--light-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.editor-box input[type="text"],
.editor-box textarea {
  width: 100%;
  padding: 12px 14px;
  background: #f1f5fa;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #222b45;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border 0.2s;
}
.editor-box input[type="text"]:focus,
.editor-box textarea:focus {
  outline: none;
  border-color: #636b2f;
  background: #fff;
}
.editor-box button {
  background: linear-gradient(
    90deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.13);
  cursor: pointer;
  transition: background 0.3s;
}
.editor-box button:hover {
  background: linear-gradient(
    90deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(99, 107, 47, 0.07);
}
.admin-table th,
.admin-table td {
  padding: 14px 12px;
  text-align: left;
}
.admin-table th {
  background: #f1f5fa;
  color: #636b2f;
  font-weight: 700;
}
.admin-table tr:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}
.edit-link,
.del-link {
  color: #4a5833;
  text-decoration: none;
  margin-right: 12px;
  font-weight: 500;
  transition: color 0.2s;
}
.edit-link:hover {
  color: #22c55e;
}
.del-link:hover {
  color: #ef4444;
}

/* Blog Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.card {
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.2) 0%,
    rgba(74, 88, 51, 0.15) 100%
  );
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.1);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border: 1px solid rgba(99, 107, 47, 0.2);
}
.card h3 {
  color: white;
  font-size: 1.18rem;
  font-weight: 700;
}
.card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.01rem;
  line-height: 1.6;
}
.card small {
  color: #f59e42;
  font-weight: 600;
}
/* Inquiry Page Styles */
.inquiry-hero {
  background: linear-gradient(135deg, #3d4126 60%, #636b2f 100%);
  color: #fff;
  padding: 64px 0 36px 0;
  text-align: center;
}
.inquiry-hero-container {
  max-width: 600px;
  margin: 0 auto;
}
.inquiry-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.inquiry-lead {
  font-size: 1.13rem;
  margin-bottom: 24px;
  color: #e0e7ef;
}
.btn-inquiry-hero {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 15px 38px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.13);
  text-decoration: none;
  transition: background 0.3s;
}
.btn-inquiry-hero:hover {
  background: linear-gradient(
    90deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
}
.inquiry-hero-sub {
  color: #b6d0f7;
  font-size: 0.98rem;
  margin-top: 0;
}
.inquiry-ways {
  background: #f7fafd;
  padding: 40px 0 24px 0;
}
.inquiry-ways-title {
  text-align: center;
  color: #222b45;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 32px;
}
.inquiry-ways-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.inquiry-way-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(99, 107, 47, 0.07);
  padding: 28px 24px 18px 24px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
  margin-bottom: 18px;
}
.inquiry-way-icon {
  margin-bottom: 12px;
}
.inquiry-way-label {
  font-weight: 700;
  color: #636b2f;
  margin-bottom: 4px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.inquiry-way-emoji {
  font-size: 1.8rem;
  display: inline-block;
  animation: bounce 0.6s ease-out;
}
.inquiry-way-link {
  color: #4a5833;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  word-break: break-all;
}
.inquiry-way-link:hover {
  text-decoration: underline;
}
.inquiry-way-desc {
  color: #64748b;
  font-size: 0.97rem;
}
.inquiry-form-section {
  background: #f7fafd;
  padding: 36px 0 48px 0;
}
.inquiry-form-container {
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.1);
  padding: 48px 36px 36px 36px;
  transition: all 0.3s ease;
}
.inquiry-form-container:hover {
  box-shadow: 0 8px 32px rgba(99, 107, 47, 0.15);
}
.inquiry-form-title {
  text-align: center;
  color: #222b45;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.inquiry-form {
  width: 100%;
}
.inquiry-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
}
.inquiry-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.inquiry-form-group label {
  font-size: 0.97rem;
  font-weight: 600;
  color: #222b45;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inquiry-form-group label svg {
  width: 18px;
  height: 18px;
  color: var(--accent-blue);
  flex-shrink: 0;
  stroke-width: 2.5;
}
.inquiry-form-group input,
.inquiry-form-group textarea {
  padding: 13px 15px;
  background: #f7fafd;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  color: #222b45;
  font-size: 0.97rem;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: inherit;
}
.inquiry-form-group input::placeholder,
.inquiry-form-group textarea::placeholder {
  color: rgba(34, 43, 69, 0.5);
}
.inquiry-form-group input:focus,
.inquiry-form-group textarea:focus {
  outline: none;
  border-color: #636b2f;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(99, 107, 47, 0.1);
}
.inquiry-form-group.full-width {
  width: 100%;
  margin-bottom: 22px;
}
.inquiry-form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 20px 0 16px 0;
  padding: 16px;
  background: rgba(99, 107, 47, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(99, 107, 47, 0.1);
}
.inquiry-form-group.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  cursor: pointer;
  accent-color: var(--accent-blue);
  margin: 0;
  flex-shrink: 0;
}
.inquiry-form-group.checkbox label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222b45;
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.5;
}
.inquiry-form-group.checkbox a {
  color: #4a5833;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.inquiry-form-group.checkbox a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}
.btn-inquiry-submit {
  width: 100%;
  margin-top: 20px;
  font-size: 1.08rem;
  padding: 16px 0;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.13);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.btn-inquiry-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 0;
}
.btn-inquiry-submit:hover::before {
  left: 100%;
}
.btn-inquiry-submit:hover {
  background: linear-gradient(
    90deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 107, 47, 0.25);
}
.btn-inquiry-submit:active {
  transform: translateY(0);
}
@media (max-width: 700px) {
  .inquiry-form-row {
    flex-direction: column;
    gap: 0;
  }
  .inquiry-form-container {
    padding: 18px 4vw 12px 4vw;
  }
  .inquiry-ways-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.howitworks-lead {
  text-align: center;
  color: rgba(99, 107, 47, 0.95);
  font-size: 1.15rem;
  margin-bottom: 32px;
  font-weight: 500;
}
.howitworks-list {
  text-align: left;
  margin: 12px 0 12px 0;
  padding-left: 1.2em;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}
.howitworks-list li {
  margin-bottom: 6px;
  list-style: disc inside;
}
.credit-sources {
  display: inline-block;
  color: var(--light-blue);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 6px 0 8px 0;
}
.howitworks-why {
  background: rgba(61, 65, 38, 0.85);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.1);
  padding: 32px 24px 24px 24px;
  margin: 48px auto 0 auto;
  max-width: 600px;
  text-align: center;
}
.howitworks-why h2 {
  color: var(--accent-blue);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.howitworks-why strong {
  color: var(--light-blue);
}
.howitworks-cta {
  margin: 48px auto 0 auto;
  text-align: center;
}
.howitworks-cta h2 {
  color: var(--accent-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.howitworks-btn {
  margin-top: 18px;
  font-size: 1.08rem;
  padding: 15px 32px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.13);
  display: inline-block;
  transition: background 0.3s;
  text-decoration: none;
}
.howitworks-btn:hover {
  background: linear-gradient(
    90deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
}
/* How It Works Page */
.howitworks-section {
  padding: 60px 0 40px 0;
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.07) 0%,
    rgba(185, 192, 150, 0.03) 100%
  );
}
.howitworks-title {
  text-align: center;
  color: var(--accent-blue);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 38px;
}
.howitworks-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.howitworks-step {
  background: rgba(61, 65, 38, 0.85);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.1);
  padding: 32px 24px 28px 24px;
  max-width: 300px;
  min-width: 240px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.2s;
}
.howitworks-step:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(99, 107, 47, 0.13);
}
.step-icon {
  margin-bottom: 18px;
}
.step-icon svg {
  display: inline-block;
  color: white;
}
.howitworks-step h3 {
  color: var(--light-blue);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.howitworks-step p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.01rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .howitworks-steps {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .howitworks-step {
    max-width: 95vw;
    min-width: 0;
  }
}
/* Consultation Confirmation Page */
.confirmation-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.1) 0%,
    rgba(185, 192, 150, 0.05) 100%
  );
}
.confirmation-container {
  background: rgba(61, 65, 38, 0.85);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(99, 107, 47, 0.13);
  padding: 48px 32px 36px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.confirmation-icon {
  margin-bottom: 24px;
}
.confirmation-icon svg {
  width: 72px;
  height: 72px;
  display: inline-block;
}
.confirmation-section h1 {
  color: var(--accent-blue);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.confirmation-subtext {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .confirmation-container {
    padding: 28px 6vw 18px 6vw;
  }
  .confirmation-icon svg {
    width: 54px;
    height: 54px;
  }
}
/* Consultation Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(61, 65, 38, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.modal-content {
  background: rgba(61, 77, 58, 0.97);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(99, 107, 47, 0.18);
  padding: 0 0 0 0;
  max-width: 540px;
  width: 95vw;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.4, 2, 0.6, 1) 1;
}
@keyframes modalIn {
  from {
    transform: translateY(40px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--accent-blue);
}
.modal-content .form-wrapper {
  padding: 38px 28px 28px 28px;
}
@media (max-width: 600px) {
  .modal-content .form-wrapper {
    padding: 18px 4vw 12px 4vw;
  }
  .modal-content {
    max-width: 99vw;
  }
}
/* Enhanced Contact Form Styles */
.contact-header {
  text-align: center;
  margin-bottom: 32px;
}
.contact-header h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 10px;
}
.contact-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.contact-form-wrapper {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(61, 65, 38, 0.7);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(99, 107, 47, 0.1);
  padding: 40px 32px 32px 32px;
  border: 1.5px solid rgba(99, 107, 47, 0.13);
}

.contact-form h3 {
  color: var(--light-blue);
  font-size: 1.15rem;
  margin-top: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-form .form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form .form-row input,
.contact-form .form-row select {
  flex: 1;
  padding: 12px 16px;
  background: rgba(61, 65, 38, 0.85);
  border: 1px solid rgba(99, 107, 47, 0.25);
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  margin-bottom: 0;
  transition: all 0.3s;
}
.contact-form .form-row input:focus,
.contact-form .form-row select:focus {
  outline: none;
  border-color: var(--light-blue);
  background: rgba(61, 65, 38, 0.97);
}

.contact-form .form-group.full-width {
  margin-bottom: 18px;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.contact-form .form-group label::before {
  content: none !important;
  display: none !important;
}
.contact-form .checkbox-group,
.contact-form .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 8px;
}
.contact-form .checkbox-group label,
.contact-form .radio-group label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  cursor: pointer;
  margin-bottom: 0;
}
.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
  accent-color: var(--light-blue);
  margin-right: 7px;
  width: 18px;
  height: 18px;
}
.contact-form .btn-submit {
  width: 100%;
  margin-top: 18px;
  font-size: 1.08rem;
  padding: 15px 0;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.13);
}
.contact-form .btn-submit:hover {
  background: linear-gradient(
    90deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
}
.contact-form .form-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  margin-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(99, 107, 47, 0.1);
  padding-top: 12px;
}
@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 24px 8px 18px 8px;
  }
  .contact-header h1 {
    font-size: 1.4rem;
  }
}
:root {
  --dark-blue: #17190e;
  --medium-blue: #4a5833;
  --accent-blue: #636b2f;
  --light-blue: #b9c096;
  --soft-blue: #d4de95;
  --white: #ffffff;
  --gray: #94a3b8;
  --card-bg: #4a5833;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--dark-blue);
  color: var(--white);
}

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

/* Navbar */
.navbar {
  background: rgba(61, 65, 38, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-text {
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-text span {
  color: var(--accent-blue);
}

.logo img {
  height: clamp(50px, 12vw, 85px);
  width: auto;
  max-width: 200px;
}

.logo span {
  color: var(--accent-blue);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li {
  margin-left: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--light-blue);
}

.btn-cta {
  background: var(--accent-blue);
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: white !important;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--light-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(61, 65, 38, 0.95), rgba(74, 88, 51, 0.85)),
    url("/img/hero.jpg") center/cover;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 65, 38, 0.97) 0%,
    rgba(74, 88, 51, 0.92) 50%,
    rgba(99, 107, 47, 0.85) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 107, 47, 0.15);
  border: 1px solid rgba(99, 107, 47, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--light-blue);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #b9c096 0%, #636b2f 50%, #4a5833 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: var(--light-blue);
  background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 107, 47, 0.15), transparent);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 7s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 10%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.btn-main {
  background: var(--accent-blue);
  color: white;
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 107, 47, 0.3);
}

.btn-main:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 107, 47, 0.5);
}

.btn-outline {
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 0.95rem 2.5rem;
  text-decoration: none;
  margin-left: 15px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-3px);
}

/* Blog Preview Section */
.blog-preview {
  padding: 100px 0;
  background: var(--dark-blue);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-label svg {
  width: 20px;
  height: 20px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid rgba(99, 107, 47, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 107, 47, 0.3);
  box-shadow: 0 20px 60px rgba(99, 107, 47, 0.25);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.blog-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 107, 47, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.blog-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.blog-date {
  font-weight: 600;
}

.blog-read-time {
  color: rgba(255, 255, 255, 0.65);
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-card-link svg {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link {
  color: var(--light-blue);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(99, 107, 47, 0.3);
  color: var(--accent-blue);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(99, 107, 47, 0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

.btn-main,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-main svg,
.btn-outline svg {
  transition: transform 0.3s ease;
}

.btn-main:hover svg {
  transform: translateX(4px);
}

.btn-outline:hover svg {
  transform: scale(1.1);
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 107, 47, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 107, 47, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Dashboard & Forms */
.dashboard {
  padding: 60px 0;
}

.editor-box {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99, 107, 47, 0.2);
  border-radius: 10px;
  background: rgba(61, 65, 38, 0.5);
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(99, 107, 47, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--gray);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(99, 107, 47, 0.1);
  text-align: left;
}

.admin-table th {
  background: rgba(74, 88, 51, 0.3);
  font-weight: 600;
  color: var(--light-blue);
}

.edit-link {
  color: var(--accent-blue);
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.edit-link:hover {
  color: var(--light-blue);
}

.del-link {
  color: #f87171;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.del-link:hover {
  color: #ef4444;
}

/* Flash Messages */
.flash-message {
  padding: 1.2rem;
  margin: 1.5rem 0;
  text-align: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #10b981, #059669);
  transition: all 0.5s ease;
  font-weight: 500;
}

.flash-message.danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Footer CTA Section with Glass Effect */
.footer-cta {
  padding: 80px 0;
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(99, 107, 47, 0.15),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(185, 192, 150, 0.1),
      transparent 60%
    );
  pointer-events: none;
}

.cta-glass-card {
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.9) 0%,
    rgba(74, 88, 51, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(99, 107, 47, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-phone,
.btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-phone {
  background: white;
  color: var(--accent-blue);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

.btn-consultation {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-consultation:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-phone svg,
.btn-consultation svg {
  transition: transform 0.3s ease;
}

.btn-phone:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.btn-consultation:hover svg {
  transform: translateX(4px);
}

/* Main Footer */
.main-footer {
  background: linear-gradient(180deg, #3d4126 0%, #2e3620 100%);
  padding: 60px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

/* Footer Logo & About */
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent-blue);
}

.footer-about {
  color: white;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(99, 107, 47, 0.1);
  border: 1px solid rgba(99, 107, 47, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(99, 107, 47, 0.3);
}

/* Footer Columns */
.footer-heading {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--light-blue);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  color: white;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
}

.footer-copyright {
  color: white;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--light-blue);
}

.separator {
  color: rgba(148, 163, 184, 0.5);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  transition: 0.4s;
  border-radius: 2px;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--accent-blue);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }

  .logo-section {
    gap: 0.3rem;
  }

  .logo img {
    height: clamp(50px, 12vw, 85px);
  }

  .logo-text {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(61, 65, 38, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 0;
    border-top: 1px solid rgba(99, 107, 47, 0.1);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 60%;
    height: 1px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-main,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

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

  .section-title {
    font-size: 2rem;
  }

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

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

  .cta-glass-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-phone,
  .btn-consultation {
    width: 100%;
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Privacy & Legal Pages */
.policy-section {
  padding: 80px 0;
  min-height: calc(100vh - 300px);
  background: linear-gradient(
    135deg,
    rgba(61, 65, 38, 0.5) 0%,
    rgba(74, 88, 51, 0.3) 100%
  );
}

.policy-header {
  text-align: center;
  margin-bottom: 60px;
}

.policy-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.policy-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-intro {
  background: rgba(99, 107, 47, 0.1);
  border: 1px solid rgba(99, 107, 47, 0.2);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.policy-item {
  background: rgba(61, 77, 58, 0.6);
  border: 1px solid rgba(99, 107, 47, 0.15);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.policy-item:hover {
  border-color: rgba(99, 107, 47, 0.3);
  background: rgba(61, 77, 58, 0.8);
  transform: translateY(-2px);
}

.policy-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.policy-icon {
  width: 36px;
  height: 36px;
  color: var(--light-blue);
  flex-shrink: 0;
  stroke-width: 2;
}

.policy-item h2 {
  font-size: 1.4rem;
  color: var(--accent-blue);
  margin: 0;
}

.policy-item > p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0;
  text-align: justify;
}

.policy-item > p:last-of-type {
  margin-bottom: 0;
}

.feature-list {
  list-style: none;
  margin: 20px 0 24px 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  line-height: 1.6;
}

.bullet {
  color: var(--light-blue);
  font-weight: 600;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(96, 165, 250, 0.05) 100%
  );
  border-color: rgba(59, 130, 246, 0.3);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(61, 65, 38, 0.5);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(99, 107, 47, 0.1);
}

.contact-icon {
  width: 28px;
  height: 28px;
  color: var(--light-blue);
  flex-shrink: 0;
  margin-top: 4px;
  stroke-width: 2;
}

.contact-info-item > div {
  flex: 1;
}

.contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.contact-info-item a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
}

.contact-link {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

/* Policy Footer */
.policy-footer {
  background: rgba(61, 77, 58, 0.4);
  border: 1px solid rgba(99, 107, 47, 0.15);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.policy-footer p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px 0;
  font-weight: 500;
}

.related-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.related-links li {
  display: inline;
}

.related-links a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
}

.related-links a:hover {
  color: var(--accent-blue);
  background: rgba(99, 107, 47, 0.1);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-subtitle {
    font-size: 1rem;
  }

  .policy-item {
    padding: 24px;
    margin-bottom: 20px;
  }

  .policy-intro {
    padding: 24px;
  }

  .policy-item h2 {
    font-size: 1.1rem;
  }

  .policy-icon {
    width: 28px;
    height: 28px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-links {
    gap: 12px;
  }

  .related-links a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .policy-item > p {
    font-size: 0.95rem;
  }

  .feature-list li {
    font-size: 0.95rem;
  }
}

/* Terms of Use Page */
.terms-section {
  padding: 60px 0;
  min-height: calc(100vh - 300px);
  background: var(--dark-blue);
}

.terms-header {
  text-align: center;
  margin-bottom: 50px;
}

.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.terms-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.terms-content {
  max-width: 850px;
  margin: 0 auto;
}

.terms-intro {
  background: rgba(74, 88, 51, 0.3);
  border-left: 4px solid var(--accent-blue);
  padding: 24px 28px;
  margin-bottom: 40px;
  border-radius: 4px;
}

.terms-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.terms-item {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(99, 107, 47, 0.15);
}

.terms-item:last-of-type {
  border-bottom: none;
}

.terms-item h2 {
  font-size: 1.2rem;
  color: var(--accent-blue);
  margin: 0 0 16px 0;
  font-weight: 600;
}

.terms-item > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0;
}

.terms-item ul {
  list-style: none;
  margin: 16px 0;
  padding-left: 0;
}

.terms-item li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.terms-item li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(99, 107, 47, 0.15);
  border-bottom: 1px solid rgba(99, 107, 47, 0.15);
}

.contact-item {
  flex: 1;
}

.contact-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px 0;
}

.contact-item a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-blue);
}

.terms-item a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-item a:hover {
  color: var(--accent-blue);
}

.terms-footer-links {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(99, 107, 47, 0.15);
  text-align: center;
}

.terms-footer-links p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.terms-footer-links a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.terms-footer-links a:hover {
  color: var(--accent-blue);
}

/* Responsive Design for Terms */
@media (max-width: 768px) {
  .terms-section {
    padding: 40px 0;
  }

  .terms-header h1 {
    font-size: 1.8rem;
  }

  .terms-subtitle {
    font-size: 0.9rem;
  }

  .terms-content {
    padding: 0 16px;
  }

  .terms-item {
    margin-bottom: 28px;
    padding-bottom: 24px;
  }

  .terms-item h2 {
    font-size: 1.1rem;
  }

  .terms-item > p,
  .terms-item li {
    font-size: 0.9rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Consultation Page */
.consultation-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(61, 65, 38, 0.8) 0%,
    rgba(74, 88, 51, 0.5) 100%
  );
}

.consultation-header {
  text-align: center;
  margin-bottom: 60px;
}

.consultation-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--light-blue);
  margin-bottom: 16px;
}

.consultation-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.consultation-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.consultation-card {
  background: rgba(61, 77, 58, 0.7);
  border: 1px solid rgba(99, 107, 47, 0.2);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.consultation-card:hover {
  border-color: rgba(99, 107, 47, 0.4);
  background: rgba(61, 77, 58, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 107, 47, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185, 192, 150, 0.15);
  border-radius: 12px;
  border: 2px solid var(--light-blue);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--light-blue);
  stroke-width: 2;
}

.card-icon.phone-icon {
  background: rgba(99, 107, 47, 0.15);
  border-color: var(--accent-blue);
}

.card-icon.phone-icon svg {
  color: var(--accent-blue);
}

.consultation-card h2 {
  font-size: 1.5rem;
  color: var(--light-blue);
  margin: 0 0 16px;
}

.consultation-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 24px;
}

.btn-consultation,
.btn-call {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.btn-consultation {
  background: var(--accent-blue);
}

.btn-consultation:hover {
  background: var(--light-blue);
  transform: scale(1.05);
}

.btn-call {
  background: var(--medium-blue);
}

.btn-call:hover {
  background: var(--accent-blue);
}

/* Consultation Form Section */
.consultation-form-section {
  padding: 80px 0;
  background: var(--dark-blue);
}

.form-wrapper {
  background: rgba(61, 77, 58, 0.6);
  border: 1px solid rgba(99, 107, 47, 0.15);
  border-radius: 12px;
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.form-wrapper h2 {
  font-size: 2rem;
  color: white;
  margin: 0 0 12px;
  text-align: center;
}

.form-subtitle {
  font-size: 0.95rem;
  color: white;
  text-align: center;
  margin: 0 0 40px;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  padding: 12px 16px;
  background: rgba(61, 65, 38, 0.8);
  border: 1px solid rgba(99, 107, 47, 0.3);
  border-radius: 6px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-blue);
  background: rgba(61, 65, 38, 0.95);
  box-shadow: 0 0 0 3px rgba(185, 192, 150, 0.1);
}

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

/* Radio Group */
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--light-blue);
}

.radio-option label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.95rem;
  color: white;
}

/* Checkbox */
.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-group.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--light-blue);
  flex-shrink: 0;
}

.form-group.checkbox label {
  margin: 0;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  color: white;
}

.form-group.checkbox a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-group.checkbox a:hover {
  color: var(--accent-blue);
}

/* Submit Button */
.btn-submit {
  padding: 16px 32px;
  background: linear-gradient(
    135deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 107, 47, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(99, 107, 47, 0.1);
}

/* Responsive Design for Consultation */
@media (max-width: 768px) {
  .consultation-section {
    padding: 50px 0;
  }

  .consultation-header h1 {
    font-size: 2rem;
  }

  .consultation-subtitle {
    font-size: 1rem;
  }

  .consultation-methods {
    gap: 24px;
  }

  .consultation-card {
    padding: 32px 24px;
  }

  .consultation-form-section {
    padding: 50px 0;
  }

  .form-wrapper {
    padding: 40px 24px;
  }

  .form-wrapper h2 {
    font-size: 1.5rem;
  }

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

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .consultation-card h2 {
    font-size: 1.2rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
  }

  .card-icon svg {
    width: 28px;
    height: 28px;
  }
}

/* Form Group Styling */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group label {
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
  font-size: 0.97rem;
}
.form-group input[type="text"],
.form-group input[type="file"],
.form-group textarea {
  padding: 12px 14px;
  background: #f1f5fa;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #222b45;
  font-size: 1rem;
  transition: border 0.2s;
  font-family: inherit;
}
.form-group input[type="text"]:focus,
.form-group input[type="file"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #636b2f;
  background: #fff;
}
.form-group small {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

/* Card Image Styling */
.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  margin: -28px -22px 12px -22px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-preview {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  margin: 8px 0;
  flex: 1;
}
.card-read-more {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  margin-top: auto;
}
.card-read-more:hover {
  color: var(--accent-blue);
}

/* Admin Thumbnail */
.admin-thumb {
  max-width: 80px;
  max-height: 80px;
  border-radius: 6px;
  object-fit: cover;
}
.admin-thumb-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background: #e5e7eb;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-align: center;
  padding: 4px;
}

/* Posts List Layout */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  transition: box-shadow 0.2s;
}
.post-item:hover {
  box-shadow: 0 2px 12px rgba(99, 107, 47, 0.07);
}
.post-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.post-item-title-section {
  display: flex;
  gap: 12px;
  flex: 1;
}
.post-item-title-section h3 {
  color: var(--accent-blue);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.post-item-title-section small {
  color: #666;
  font-size: 0.85rem;
}
.post-item-actions {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}
.post-item-content {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 92px;
}

/* Login Page Styles */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(61, 65, 38, 0.95) 0%,
    rgba(74, 88, 51, 0.85) 100%
  );
}
.login-container {
  max-width: 100%;
  margin: 0 auto;
}
.login-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(99, 107, 47, 0.2);
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.login-box h1 {
  color: var(--accent-blue);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}
.login-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.98rem;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-form .form-group input[type="text"],
.login-form .form-group input[type="password"] {
  padding: 12px 14px;
  background: #f1f5fa;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  color: #222b45;
  font-size: 1rem;
  transition: border 0.2s;
}
.login-form .form-group input[type="text"]:focus,
.login-form .form-group input[type="password"]:focus {
  outline: none;
  border-color: #636b2f;
  background: #fff;
}
.btn-login {
  background: linear-gradient(
    90deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.13);
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 12px;
}
.btn-login:hover {
  background: linear-gradient(
    90deg,
    var(--light-blue) 0%,
    var(--accent-blue) 100%
  );
}
@media (max-width: 600px) {
  .login-box {
    padding: 24px 16px;
  }
  .login-box h1 {
    font-size: 1.4rem;
  }
}

/* Blog Post Page */
.blog-post-section {
  padding: 40px 0;
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.07) 0%,
    rgba(185, 192, 150, 0.03) 100%
  );
  min-height: 80vh;
}
.blog-post-container {
  max-width: 700px;
  margin: 0 auto;
}
.blog-back-link {
  display: inline-block;
  color: #4a5833;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.blog-back-link:hover {
  color: #636b2f;
}
.blog-post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(99, 107, 47, 0.1);
  overflow: hidden;
}
.post-featured-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-meta {
  padding: 24px 32px 12px 32px;
}
.post-date {
  color: #f59e42;
  font-weight: 600;
  font-size: 0.95rem;
}
.post-title {
  padding: 0 32px;
  color: var(--accent-blue);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.post-content {
  padding: 16px 32px 32px 32px;
  color: #222b45;
  font-size: 1.08rem;
  line-height: 1.8;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Who We Serve Section */
.serve-section {
  padding: 80px 0;
  background: var(--dark-blue);
}

.serve-content {
  max-width: 800px;
  margin: 0 auto;
}

.serve-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.serve-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.serve-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Our Values Section */
.values-section {
  padding: 80px 0;
  background: var(--dark-blue);
}

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

.value-item {
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.15) 0%,
    rgba(185, 192, 150, 0.1) 100%
  );
  border: 1px solid rgba(99, 107, 47, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: rgba(99, 107, 47, 0.4);
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.25) 0%,
    rgba(185, 192, 150, 0.15) 100%
  );
  transform: translateY(-5px);
}

.value-title {
  color: var(--accent-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(99, 107, 47, 0.3) 0%,
    rgba(74, 88, 51, 0.3) 100%
  );
  border-top: 2px solid rgba(99, 107, 47, 0.3);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--accent-blue);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-blue);
}

.cta-button:hover {
  background: transparent;
  color: var(--accent-blue);
}

@media (max-width: 700px) {
  .post-featured-image {
    height: 220px;
  }
  .post-title {
    font-size: 1.5rem;
    padding: 0 20px;
  }
  .post-meta,
  .post-content {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .cta-title {
    font-size: 2rem;
  }

  .serve-list li {
    font-size: 1rem;
  }

  /* Responsive Approach Section */
  .approach-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-item {
    padding: 1.5rem;
  }

  .approach-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .approach-item h4 {
    font-size: 1.1rem;
  }

  .approach-item p {
    font-size: 0.9rem;
  }

  .approach-intro {
    font-size: 1rem;
  }

  /* Responsive Intro */
  .intro-text {
    font-size: 1rem;
  }

  .intro-highlight {
    font-size: 0.95rem;
  }
}

/* ============================================ */
/* ADVANCED ANIMATIONS & VISUAL ENHANCEMENTS */
/* ============================================ */

/* Fade-up animation for elements on scroll */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Gradient shift animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pulse animation for badges */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(99, 107, 47, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(99, 107, 47, 0);
  }
}

/* Scale and glow on hover */
@keyframes scaleGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(99, 107, 47, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(99, 107, 47, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(99, 107, 47, 0.3);
  }
}

/* Shimmer loading effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Ripple effect */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

/* Apply fade-up animation to scroll elements */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-up.animate-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.6s ease-out forwards;
}

/* Stagger delay for list items */
.serve-list li.fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.serve-list li.fade-up:nth-child(1) {
  animation-delay: 0s;
}
.serve-list li.fade-up:nth-child(2) {
  animation-delay: 0.1s;
}
.serve-list li.fade-up:nth-child(3) {
  animation-delay: 0.2s;
}
.serve-list li.fade-up:nth-child(4) {
  animation-delay: 0.3s;
}
.serve-list li.fade-up:nth-child(5) {
  animation-delay: 0.4s;
}
.serve-list li.fade-up:nth-child(6) {
  animation-delay: 0.5s;
}

/* Enhanced hero section animations */
.hero-badge {
  animation:
    fadeIn 0.8s ease-out,
    pulse 2s ease-in-out 1s infinite;
}

.hero-title {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-description {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-btns {
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  animation: fadeUp 0.8s ease-out 0.8s both;
}

/* Enhanced card animations */
.card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.blog-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.card:hover::after,
.blog-card:hover::after {
  left: 100%;
}

/* Animated section headers */
.section-header {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.section-label {
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.section-title {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.section-description {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

/* Animated buttons with enhanced hover effects */
.btn-main,
.btn-outline,
.btn-consultation,
.btn-phone {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-main::before,
.btn-outline::before,
.btn-consultation::before,
.btn-phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: 0;
}

.btn-main:hover::before,
.btn-outline:hover::before,
.btn-consultation:hover::before,
.btn-phone:hover::before {
  left: 100%;
}

.btn-main > *,
.btn-outline > *,
.btn-consultation > *,
.btn-phone > * {
  position: relative;
  z-index: 1;
}

/* Animated form inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.form-group input::before,
.form-group textarea::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
  transition: width 0.3s ease;
}

.form-group input:focus::before,
.form-group textarea:focus::before {
  width: 100%;
}

/* Consultation cards stagger */
.consultation-card:nth-child(1) {
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.consultation-card:nth-child(2) {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.consultation-card:nth-child(3) {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

/* Values grid stagger */
.value-item:nth-child(1) {
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.value-item:nth-child(2) {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.value-item:nth-child(3) {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.value-item:nth-child(4) {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

/* Blog cards grid stagger */
.blog-card:nth-child(1) {
  animation: fadeUp 0.8s ease-out 0.1s both;
}

.blog-card:nth-child(2) {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.blog-card:nth-child(3) {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

/* Enhanced CTA glass card animation */
.cta-glass-card {
  animation: fadeUp 0.8s ease-out both;
}

.cta-title {
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.cta-description {
  animation: fadeUp 0.8s ease-out 0.3s both;
}

.cta-buttons {
  animation: fadeUp 0.8s ease-out 0.4s both;
}

/* Animated policy items */
.policy-item {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.policy-item:hover {
  animation: scaleGlow 0.6s ease-out;
}

/* Smooth transitions for flash messages */
.flash-message {
  animation:
    fadeIn 0.4s ease-out,
    fadeUp 0.6s ease-out;
}

.flash-message.danger {
  animation:
    fadeIn 0.4s ease-out,
    fadeUp 0.6s ease-out;
}

/* Navbar smooth transitions */
.navbar {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Footer link hover animation */
.footer-links a,
.related-links a,
.contact-link {
  position: relative;
  transition: color 0.3s ease;
}

.footer-links a::after,
.related-links a::after,
.contact-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}

.footer-links a:hover::after,
.related-links a:hover::after,
.contact-link:hover::after {
  width: 100%;
}

/* Smooth page transition */
html {
  scroll-behavior: smooth;
}

/* Enhanced stat number animation */
.stat-number {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--soft-blue);
  transform: scale(1.1);
}

/* Card image overlay animation */
.card-image {
  position: relative;
  overflow: hidden;
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover .card-image::before {
  opacity: 1;
}

.card-image img {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover .card-image img {
  transform: scale(1.1) rotate(1deg);
}

/* ============================================ */
/* ENHANCED FORM STYLING - CLEAN & PROFESSIONAL */
/* ============================================ */

/* Form Header */
.form-header {
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.form-header h2 {
  font-size: 2rem;
  color: white;
  margin: 0 0 12px;
  text-align: center;
  font-weight: 800;
}

.form-header .form-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Sections */
.form-section {
  background: rgba(61, 77, 58, 0.5);
  border: 1px solid rgba(99, 107, 47, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeUp 0.8s ease-out forwards;
}

.form-section:hover {
  border-color: rgba(99, 107, 47, 0.4);
  background: rgba(61, 77, 58, 0.65);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(99, 107, 47, 0.3);
}

.section-icon {
  font-size: 1.8rem;
  display: inline-block;
}

.section-title h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--light-blue);
  font-weight: 700;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group .hint {
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: none;
  letter-spacing: normal;
}

.form-group .required {
  color: #f87171;
}

/* Form Inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(61, 65, 38, 0.8);
  border: 2px solid rgba(99, 107, 47, 0.3);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--light-blue);
  background: rgba(61, 65, 38, 0.95);
  box-shadow: 0 0 0 3px rgba(185, 192, 150, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Form Row Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-row .form-group.full-width {
  grid-column: 1 / -1;
}

/* Checkbox Styling */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--light-blue);
  flex-shrink: 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:hover {
  accent-color: var(--accent-blue);
  transform: scale(1.1);
}

.checkbox-item input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
  border-color: var(--light-blue);
}

.checkbox-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + label {
  color: var(--light-blue);
  font-weight: 600;
}

.checkbox-item label:hover {
  color: var(--light-blue);
}

/* Radio Button Styling */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.radio-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.radio-item input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--light-blue);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.radio-item input[type="radio"]:hover {
  accent-color: var(--accent-blue);
  transform: scale(1.1);
}

.radio-item label {
  margin: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-label-main {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.radio-label-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.radio-item input[type="radio"]:checked + label .radio-label-main {
  color: var(--light-blue);
}

.radio-item:hover label .radio-label-main {
  color: var(--light-blue);
}

/* Checkbox Agreement Styling */
.checkbox-agreement {
  background: rgba(99, 107, 47, 0.15);
  border: 1px solid rgba(99, 107, 47, 0.3);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem !important;
}

.checkbox-agreement input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-agreement label {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.checkbox-agreement a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.checkbox-agreement a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.btn-submit {
  padding: 16px 48px;
  background: linear-gradient(
    135deg,
    var(--accent-blue) 0%,
    var(--light-blue) 100%
  );
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-width: 300px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(99, 107, 47, 0.4);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  max-width: 500px;
  line-height: 1.6;
}

/* Responsive Form Layout */
@media (max-width: 768px) {
  .form-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }

  .section-title h3 {
    font-size: 1.1rem;
  }

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

  .checkbox-group,
  .radio-group {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .btn-submit {
    width: 100%;
    min-width: unset;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Animation delays for form sections */
.form-section:nth-child(1) {
  animation-delay: 0.1s;
}
.form-section:nth-child(2) {
  animation-delay: 0.2s;
}
.form-section:nth-child(3) {
  animation-delay: 0.3s;
}
.form-section:nth-child(4) {
  animation-delay: 0.4s;
}
.form-section:nth-child(5) {
  animation-delay: 0.5s;
}
.form-section:nth-child(6) {
  animation-delay: 0.6s;
}

/* Menu button animation */
.menu-btn {
  transition: all 0.3s ease;
}

.menu-btn:hover span {
  background: var(--light-blue);
}

/* Text gradient animation for hero */
.gradient-text {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

/* Navigation link animation */
.nav-links a {
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Smooth transitions for all interactive elements */
input,
textarea,
button,
a {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hero shapes animation enhancement */
.shape {
  filter: blur(40px);
  opacity: 0.6;
}

.shape:hover {
  opacity: 0.8;
}
