:root {
  --primary-dark: #0a1628;
  --primary-gold: #b8860b;
  --primary-gold-light: #daa520;
  --light-gray: #f4f6f9;
  --medium-gray: #e8ecf1;
  --dark-gray: #6b7280;
  --white: #ffffff;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.15);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-medium);
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-medium);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.header.scrolled .logo-text {
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 50%, #0d1f3c 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(184,134,11,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 22, 40, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-medium);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-gold-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-gold-outline:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  fill: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(184,134,11,0.08)"/></svg>') repeat;
  background-size: 30px 30px;
}

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

.page-title {
  color: var(--white);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--light-gray);
}

.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.section-title {
  margin-bottom: 20px;
}

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

.what-we-do {
  position: relative;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.what-we-do-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(30px);
}

.what-we-do-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.what-we-do-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.what-we-do-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 100%);
  border-radius: 50%;
  transition: all var(--transition-medium);
}

.what-we-do-item:hover .what-we-do-icon {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
}

.what-we-do-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.what-we-do-item h4 {
  margin-bottom: 15px;
}

.what-we-do-item p {
  font-size: 0.95rem;
}

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

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 100%);
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 30px;
}

.service-content h4 {
  margin-bottom: 15px;
}

.service-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(5px);
}

.service-detail {
  padding: 100px 0;
}

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

.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.service-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-detail-content h2 {
  margin-bottom: 20px;
}

.service-detail-content p {
  margin-bottom: 25px;
}

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

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-medium);
}

.service-features li svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-family: 'Georgia', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
}

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

.value-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  border-radius: 50%;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.value-card h4 {
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
  text-align: center;
}

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

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.cta-content .btn-secondary {
  border-color: var(--white);
}

.cta-content .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-gold);
}

.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-gold);
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--text-medium);
}

.contact-details a:hover {
  color: var(--primary-gold);
}

.business-hours {
  margin-top: 40px;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 8px;
}

.business-hours h4 {
  margin-bottom: 15px;
}

.business-hours p {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 8px;
}

.contact-form-wrapper h3 {
  margin-bottom: 25px;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--medium-gray);
  border-radius: 4px;
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236b7280"><path d="M7 10l5 5 5-5H7z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

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

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary-gold);
}

.form-checkbox-text {
  font-size: 0.9rem;
  color: var(--text-medium);
}

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

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--dark-gray);
  margin-top: 15px;
  text-align: center;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.lead-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2d4a 100%);
}

.lead-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.lead-form-container .section-header {
  margin-bottom: 40px;
}

.lead-form-container .section-label {
  color: var(--primary-gold);
}

.lead-form-container h2 {
  color: var(--white);
}

.lead-form-container .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.lead-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-heavy);
}

.map-section {
  height: 400px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.policy-content {
  padding: 100px 0;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.policy-header {
  margin-bottom: 50px;
}

.policy-header h1 {
  margin-bottom: 15px;
}

.policy-updated {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.policy-section h3 {
  font-size: 1.2rem;
  margin: 25px 0 15px;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul {
  margin-left: 30px;
  margin-bottom: 15px;
}

.policy-section li {
  margin-bottom: 10px;
  color: var(--text-medium);
}

.footer {
  background: var(--primary-dark);
  padding: 80px 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-about h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact h4,
.footer-legal h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.footer-contact-item a:hover {
  color: var(--primary-gold);
}

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

.footer-legal-links li {
  margin-bottom: 12px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.cookie-btn-accept {
  background: var(--primary-gold);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--primary-gold-light);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--primary-gold);
  text-decoration: underline;
}

.cookie-btn-customize:hover {
  color: var(--primary-gold-light);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-heavy);
}

.cookie-modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--medium-gray);
}

.cookie-modal-header h3 {
  font-size: 1.3rem;
  margin: 0;
}

.cookie-modal-body {
  padding: 25px 30px;
}

.cookie-option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--medium-gray);
}

.cookie-option:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-option-header h4 {
  font-size: 1rem;
  margin: 0;
}

.cookie-option-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-option-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-option-toggle input:disabled + .toggle-slider {
  background: var(--primary-gold);
  cursor: not-allowed;
}

.cookie-option-toggle input:disabled + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--medium-gray);
  border-radius: 26px;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.cookie-option-toggle input:checked + .toggle-slider {
  background: var(--primary-gold);
}

.cookie-option-toggle input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.cookie-option p {
  font-size: 0.9rem;
  margin: 0;
}

.cookie-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--medium-gray);
  display: flex;
  gap: 15px;
}

.cookie-modal-footer .btn {
  flex: 1;
  padding: 12px 20px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: span 2;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-detail-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 0;
    transition: right var(--transition-medium);
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    display: block;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

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

  .footer-about {
    grid-column: span 1;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    justify-content: center;
  }

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

  .section {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 30px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .cookie-modal-content {
    margin: 10px;
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-gold);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}
