/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   ROOT VARIABLES
======================================== */

:root {
  --bg-main: #140c2b;
  --bg-secondary: #1f1447;
  --bg-card: #2a1b5e;

  --accent: #5fd1ff;
  --accent-hover: #38bdf8;

  --text-main: #ffffff;
  --text-muted: #cbd5e1;
}

/* ========================================
   BASE STYLES
======================================== */

body {
  font-family: system-ui, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

p {
  margin-bottom: 10px;
}

/* ========================================
   LAYOUT
======================================== */

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* ========================================
   LOGO
======================================== */

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: auto;
}

.header-phone {
  margin-left: 20px;
  text-align: center;
}

/* ========================================
   CONTACT INFO
======================================== */

.contact-info {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;

  background: var(--bg-card);
}

.contact-details {
  list-style: none;
}

/* ========================================
   CONTACT LINKS
======================================== */

.contact-details a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ========================================
   CONTACT FORM
======================================== */

.contact-form {
  padding: 20px;
  border-radius: 8px;

  background: var(--bg-card);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  margin-bottom: 15px;
  padding: 10px;

  border: none;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;

  background: var(--accent);
  color: #000;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  background: var(--accent-hover);
}

/* ========================================
   BACK BUTTON
======================================== */

.back-btn {
  position: fixed;
  top: 25px;
  right: 25px;

  z-index: 1000;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);

  color: var(--text-main);
  text-decoration: none;

  backdrop-filter: blur(12px);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.back-btn:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 211, 252, 0.5);
}

/* ========================================
   FOOTER
======================================== */

footer {
  text-align: center;

  margin-top: 40px;
  padding: 20px;

  background: var(--bg-secondary);
  color: var(--text-muted);
}

/* ========================================
   MOBILE STYLES
======================================== */

@media (max-width: 600px) {

  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    width: 50px;
  }
}

/* Social Sharing */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Icon size + animation */
.social-links i {
  font-size: 28px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2);
}

/* Facebook hover */
.social-links a.facebook:hover {
  color: #1877f2;
}
/* Instagram hover */
.social-links a.instagram:hover {
  color: #e1306c;
}
