/* ========================================
   Contact Page - Specific Styles
   ======================================== */

:root {
  --primary: #7b61ff;
  --secondary: #ff6fb1;
  --accent: #0ea5e9;
  --dark: #0f172a;
  --light: #f0f9ff;
  --gradient: linear-gradient(135deg, #7b61ff 0%, #ff6fb1 50%, #0ea5e9 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: var(--font) !important;
  margin: 0;
  padding: 0;
  background: var(--dark) !important;
  color: #f0f0f5 !important;
  line-height: 1.6;
}

/* ========================================
   Header Styles
   ======================================== */

header {
  background: rgba(15, 23, 42, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
  padding: 15px 0;
}

header .logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: #f0f0f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  color: #f0f0f5 !important;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--primary) !important;
  background: rgba(123, 97, 255, 0.1);
  padding-left: 25px;
}

.get-started-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

/* ========================================
   Page Title Section
   ======================================== */

.page-title {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 20px 60px;
  text-align: center;
  margin-top: 60px;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  z-index: 0;
}

.page-title h1 {
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.page-title p {
  position: relative;
  z-index: 1;
  color: #f0f0f5;
  font-size: 16px;
  margin: 0;
}

/* ========================================
   Contact Page Content
   ======================================== */

main {
  background: var(--dark);
  min-height: calc(100vh - 200px);
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-content {
  background: var(--dark);
  padding: 40px 0;
}

.page-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}

.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.page-content p {
  font-size: 15px;
  color: #f0f0f5;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ========================================
   Contact Cards Section
   ======================================== */

.contact {
  background: var(--dark);
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
}

.section-title p {
  font-size: 16px;
  color: #f0f0f5;
  margin-top: 20px;
}

/* Contact Cards Container */
.contact-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Contact Card Styling */
.contact-card {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.08) 0%, rgba(255, 107, 177, 0.08) 100%);
  border: 1.5px solid rgba(123, 97, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.15) 0%, rgba(255, 107, 177, 0.15) 100%);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(123, 97, 255, 0.2);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

/* Contact Card Icon */
.contact-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.2);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotateY(5deg);
  box-shadow: 0 12px 30px rgba(123, 97, 255, 0.35);
}

/* Contact Card Title */
.contact-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Contact Card Content */
.contact-card-content {
  font-size: 14px;
  color: #f0f0f5;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.contact-card-content strong {
  color: var(--primary);
  font-weight: 600;
}

/* Contact Card Link */
.contact-card-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.contact-card-link:hover {
  color: var(--secondary);
  gap: 10px;
}

.contact-card-link i {
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-link i {
  transform: translateX(3px);
}

/* ========================================
   Form Styles
   ======================================== */

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-form:hover::before {
  opacity: 1;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: #f0f0f5;
  font-family: var(--font);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 240, 245, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--gradient);
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

/* ========================================
   Info Boxes
   ======================================== */

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-box:hover {
  background: rgba(123, 97, 255, 0.08);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.2);
}

.info-box:hover::before {
  opacity: 1;
}

.info-box i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.info-box h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box p {
  color: #f0f0f5;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

/* ========================================
   Footer Styles - CLEAN SLATE
   ======================================== */

footer {
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  color: #ccc !important;
  padding: 60px 0 30px !important;
  margin: 0 !important;
  border: none !important;
}

footer * {
  border: none !important;
  box-shadow: none !important;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border: none !important;
  position: relative !important;
}

.footer-col h4::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--primary) !important;
  margin-top: 12px !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #f0f0f5 !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-col ul a:hover {
  color: var(--primary) !important;
  padding-left: 3px;
}

.footer-col ul a i {
  color: var(--primary);
  font-size: 12px;
}

.footer-col p {
  color: #f0f0f5;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-col p strong {
  color: var(--primary);
}

.social-links {
  display: flex !important;
  gap: 10px !important;
  margin-top: 20px !important;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(123, 97, 255, 0.1) !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
  font-size: 18px !important;
  padding: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  line-height: 36px !important;
}

.social-links a:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #d8d8e0;
  font-size: 13px;
}

/* ========================================
   Preloader
   ======================================== */

#preloader {
  display: none;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
  .page-title h1 {
    font-size: 36px;
  }

  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .contact-card {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 0;
  }

  .nav-menu {
    display: none !important;
  }

  main {
    padding: 60px 0;
  }

  .page-title {
    padding: 60px 20px 40px;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .page-title p {
    font-size: 14px;
  }

  .contact-form {
    padding: 25px;
  }

  .info-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .contact-card-title {
    font-size: 18px;
  }

  .contact-card-content {
    font-size: 13px;
  }

  .page-content h2 {
    font-size: 24px;
  }

  .page-content h3 {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 22px;
  }

  .page-content h2 {
    font-size: 20px;
  }

  .page-content h3 {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title h2::after {
    width: 50px;
  }

  .contact-form {
    padding: 15px;
  }

  .info-box {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .contact-cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .contact-card-title {
    font-size: 16px;
  }

  .contact-card-content {
    font-size: 12px;
  }

  .footer-col {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ========================================
   Header Styles
   ======================================== */

header {
  background: rgba(15, 23, 42, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
}

header .logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: #f0f0f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  color: #f0f0f5 !important;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--primary) !important;
  background: rgba(123, 97, 255, 0.1);
  padding-left: 25px;
}

.get-started-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

/* ========================================
   Main Content
   ======================================== */

main {
  background: var(--dark);
  color: #f0f0f5;
}

.page-title {
  text-align: center;
  padding: 60px 0 40px 0;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.page-title p {
  font-size: 18px;
  color: #f0f0f5;
  margin: 0;
}

.page-content {
  padding: 40px 0;
}

.page-content h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-content h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content p {
  color: #f0f0f5;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.page-content a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-content a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* ========================================
   Form Styles
   ======================================== */

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  margin: 40px 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: #f0f0f5;
  font-family: var(--font);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 240, 245, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--gradient);
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

/* ========================================
   Info Boxes
   ======================================== */

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-box:hover {
  background: rgba(123, 97, 255, 0.08);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-5px);
}

.info-box i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.info-box h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box p {
  color: #f0f0f5;
  font-size: 13px;
  margin: 0;
}

/* ========================================
   Footer Styles - CLEAN SLATE
   ======================================== */

footer {
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  color: #ccc !important;
  padding: 0 !important;
  margin-top: 60px !important;
  border: none !important;
}

footer * {
  border: none !important;
  box-shadow: none !important;
}

#footer {
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  color: #ccc !important;
  padding: 0 0 30px 0 !important;
  margin: 0 !important;
  border: none !important;
}

#footer * {
  border: none !important;
}

#footer .footer-top {
  padding: 60px 0 30px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: transparent !important;
}

#footer .footer-info {
  margin-bottom: 30px !important;
}

#footer .footer-info h3 {
  font-size: 24px !important;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  color: #fff !important;
  border: none !important;
}

#footer .footer-info p {
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #f0f0f5 !important;
  margin-bottom: 15px !important;
}

#footer .social-links {
  display: flex !important;
  gap: 10px !important;
  margin-top: 15px !important;
}

#footer .social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(123, 97, 255, 0.1) !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
  font-size: 18px !important;
  padding: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  line-height: 36px !important;
}

#footer .social-links a:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

#footer h4 {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border: none !important;
  position: relative !important;
}

#footer h4::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--primary) !important;
  margin-top: 12px !important;
}

#footer .footer-links {
  margin-bottom: 30px !important;
}

#footer .footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#footer .footer-links ul li {
  padding: 10px 0 !important;
  border: none !important;
  margin: 0 !important;
}

#footer .footer-links ul li i {
  color: var(--primary) !important;
  margin-right: 8px !important;
  font-size: 12px !important;
}

#footer .footer-links ul a {
  color: #f0f0f5 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  font-size: 13px !important;
}

#footer .footer-links ul a:hover {
  color: var(--primary) !important;
  padding-left: 3px !important;
}

#footer .footer-newsletter {
  margin-bottom: 30px !important;
}

#footer .footer-newsletter h4 {
  color: #fff !important;
}

#footer .footer-newsletter p {
  font-size: 13px !important;
  color: #f0f0f5 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

#footer .copyright {
  padding: 20px 0 !important;
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 13px !important;
  color: #d8d8e0 !important;
  margin-top: 0 !important;
}

#footer .copyright strong {
  color: var(--primary) !important;
}

#footer .credits {
  padding: 10px 0 !important;
  text-align: center !important;
  font-size: 12px !important;
  color: #999 !important;
}

#footer .credits a {
  color: var(--primary) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

#footer .credits a:hover {
  color: var(--secondary) !important;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
  .page-title h1 {
    font-size: 36px;
  }

  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }

  .nav-menu {
    display: none !important;
  }

  .page-title {
    padding: 40px 0 30px 0;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .contact-form {
    padding: 25px;
  }

  .info-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 22px;
  }

  .page-content h2 {
    font-size: 20px;
  }

  .page-content h3 {
    font-size: 16px;
  }

  .contact-form {
    padding: 15px;
  }
}
