:root {
  --dark-bg: #0a1625;
  --section-bg: #111b2e;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVIGATION */
nav {
  background: rgba(10, 22, 37, 0.9);
  backdrop-filter: blur(8px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(249,115,22,0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* რომ არ გაჭრეს ძალიან მცირე სქრინებზე */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  white-space: nowrap;
}

.logo img {
  width: 50px;
  height: auto;
  /* position: relative; left: 30px; ამოღებულია რადგან უსაფუძვლო იყო */
}

.nav-links {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-info i.fab {
  font-size: 18px;
  color: var(--accent);
}

/* HERO */
header {
  background: linear-gradient(rgba(10,22,37,0.75), rgba(10,22,37,0.45)),
              url('pngtree.jpg') center/cover no-repeat;
  min-height: 80vh;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.8);
}



.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

/* SECTIONS */
section {
  padding: 90px 0;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--accent);
}

.features {
  background: var(--section-bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 30px;
}

.feature-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s;
}

.feature-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(249,115,22,0.07);
}

.feature-item img {
  max-width: 100%;
  border-radius: 12px;
  margin: 20px 0;
  display: block;
}

/* FORM */
.form-section {
  background: var(--section-bg);
}

.form-wrapper {
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 20px;
  padding: 50px 40px;
}

.form-wrapper h3 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 1.8rem;
  color: var(--accent);
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-muted);
}

input,
textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.14);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.15rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 15px;
}

.submit-btn:hover {
  background: var(--accent-dark);
}

/* FOOTER */
footer {
  background: var(--dark-bg);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(249,115,22,0.1);
  text-align: center;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin: 30px 0;
  font-size: 1.9rem;
}

.footer-icons a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-icons a:hover {
  color: var(--accent);
}

/* RESPONSIVE */
/* Medium tablets and smaller */
@media (max-width: 992px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    gap: 25px;
    flex-wrap: wrap;
  }

  .contact-info {
    gap: 15px;
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  section {
    padding: 60px 0;
  }
}

/* DESKTOP */
header {
  background: linear-gradient(rgba(10,22,37,0.75), rgba(10,22,37,0.45)),
              url('pngtree.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;  /* Desktop */
}

/* TABLETS */
@media (max-width: 768px) {
  header {
    min-height: 420px;
    background-position: center top;
    background-attachment: scroll;
    margin-top: 150px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  header {
    min-height: 360px; /* phone height */
    background-position: center top;
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    padding: 0 10px;  /* ტექსტი არ გადადის */
  }
}

