@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --primary-color: #1f1f20ff;
  --secondary-color: rgb(12, 108, 234);
  --background-color: #F9FAFB;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --accent-color: rgb(83, 25, 65);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --transition-base: 0.2s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
}

h1 {
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 1.875rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

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

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2b 100%);
  padding: var(--space-sm) 0;
  position: relative;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: opacity var(--transition-base);
}

.logo:hover {
  opacity: 0.85;
  color: #fff;
}

.logo img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-list {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-list a {
  color: #fff;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

.burger-menu span {
  width: 1.5625rem;
  height: 0.125rem;
  background-color: #fff;
  transition: all var(--transition-base);
  border-radius: 0.125rem;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

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

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4375rem, -0.4375rem);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #383839 100%);
  color: #fff;
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(12, 108, 234, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0 auto;
}

.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.875rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #0a5fd1;
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-accent:hover {
  background-color: #5c1948;
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 0.125rem solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: var(--radius-sm);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.image-text-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-text-container img {
  width: 100%;
  height: auto;
}

.image-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: var(--space-md);
}
.image-text-overlay h4{
  color: #fff;
}
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 0.0625rem solid #d1d5db;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.1875rem rgba(12, 108, 234, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 9.375rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  margin-bottom: 0;
  cursor: pointer;
}

.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-section a:hover {
  color: #fff;
}

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

.footer-menu li {
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: #fff;
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.privacy-popup-text {
  flex: 1;
  font-size: 0.875rem;
}

.privacy-popup-actions {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--background-color) 0%, #e5e7eb 100%);
}

.thank-you-content {
  max-width: 37.5rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-content {
  max-width: 37.5rem;
}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 25rem;
  border: none;
}

@media (max-width: 61.9375rem) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.625rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .two-column,
  .three-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .privacy-popup-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-popup-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .privacy-popup .btn {
    width: 100%;
  }
}

@media (max-width: 29.9375rem) {
  .logo{
    font-size: 1rem;
  }
  html {
    font-size: 93.75%;
  }
  
  h1 {
    font-size: 1.55rem;
  }
  li{
    list-style: none;
  }
  .image-text-container{
    border-radius: 0;
  }
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
