  :root {
      --bg-primary: #000000;
      --bg-secondary: #0A1620;
      --bg-tertiary: #162333;
      --text-primary: #FFFFFF;
      --text-secondary: #B8C5D6;
      --text-muted: #7A8A9A;
      --primary: #06D9D9;
      --primary-dark: #04A5A5;
      --primary-light: rgba(6, 217, 217, 0.12);
      --accent: #D94DFF;
      --border-color: rgba(6, 217, 217, 0.25);
      --card-bg: #0A1620;
      --shadow: rgba(0, 0, 0, 0.35);
      --gradient: linear-gradient(135deg, #06D9D9 0%, #04A5A5 100%);
      --gradient-alt: linear-gradient(135deg, #D94DFF 0%, #B01DFF 100%);
    }

    /* CSS Variables for Light Mode */
    body.light-mode {
      --bg-primary: #FFFFFF;
      --bg-secondary: #F5F7FA;
      --bg-tertiary: #E8ECEF;
      --text-primary: #000000;
      --text-secondary: #333333;
      --text-muted: #666666;
      --primary: #06D9D9;
      --primary-dark: #04A5A5;
      --primary-light: rgba(6, 217, 217, 0.12);
      --accent: #D94DFF;
      --border-color: rgba(6, 217, 217, 0.2);
      --card-bg: #FFFFFF;
      --shadow: rgba(0, 0, 0, 0.08);
      --gradient: linear-gradient(135deg, #06D9D9 0%, #04A5A5 100%);
      --gradient-alt: linear-gradient(135deg, #D94DFF 0%, #B01DFF 100%);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Navigation */
    nav {
      background: var(--bg-primary);
      backdrop-filter: blur(10px);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo svg {
      height: 40px;
    }
    
    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--text-secondary);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--primary);
      transition: var(--transition);
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .btn {
      padding: 0.8rem 1.8rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      display: inline-block;
      text-align: center;
    }
    
    .btn-primary {
      background: var(--gradient);
      color: var(--bg-primary);
      box-shadow: 0 4px 15px rgba(26, 255, 140, 0.3);
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(26, 255, 140, 0.4);
    }
    
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: var(--bg-primary);
    }

    .theme-toggle {
      background: none;
      border: none;
      color: rgb(16, 55, 117);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 50%;
      transition: all 0.3s ease;
      margin-left: 1rem;
    }

    .theme-toggle:hover {
      background: var(--primary-light);
      color: var(--primary);
    }
    
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 8px;
  z-index: 1001; /* very important */
  width: 44px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 28px !important;
  height: 3px !important;
  background: var(--primary) !important;
  border-radius: 3px !important;
  display: block !important;
  margin: 0 auto !important;
  box-shadow: 0 1px 0 rgba(0,0,0,0.25) !important;
  transition: all 0.25s ease !important;
}

/* Animated "open" state for hamburger */
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 26px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 26px;
}

/* Ensure hamburger sits above nav links on mobile */
.nav-links {
  z-index: 1000;
}

    
    /* Hero Section */
    .hero {
      padding: 8rem 0 6rem;
      background: var(--bg-primary);
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
      z-index: 0;
    }
    
    .hero::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
      z-index: 0;
    }
    
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .hero-text h1 {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
      background: linear-gradient(to right, var(--text-primary), var(--primary));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .hero-text p {
      font-size: 1.3rem;
      color: var(--text-secondary);
      margin-bottom: 2.5rem;
      max-width: 90%;
    }
    
    .hero-buttons {
      display: flex;
      gap: 1.5rem;
    }
    
    .hero-image {
      position: relative;
    }
    
    .hero-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 20px 40px var(--shadow);
    }
    
    .hero-badge {
      position: absolute;
      top: -20px;
      right: -20px;
      background: var(--card-bg);
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      box-shadow: 0 10px 20px var(--shadow);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid var(--border-color);
    }
    
    .hero-badge i {
      color: var(--primary);
    }

    /* How It Works Section */
    .how-it-works {
      padding: 6rem 0;
      background: var(--bg-secondary);
    }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .step {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: var(--gradient);
      color: var(--bg-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 1.5rem;
    }

    .step h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .step p {
      color: var(--text-secondary);
    }
    
    /* Section Styles */
    .section {
      padding: 6rem 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }
    
    .section-header p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }
    
    .feature-card {
      background: var(--card-bg);
      padding: 2.5rem;
      border-radius: 12px;
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border-color);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px var(--shadow);
      border-color: var(--primary);
    }
    
    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
      font-size: 1.8rem;
      color: var(--primary);
    }
    
    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }
    
    .feature-card p {
      color: var(--text-secondary);
      flex-grow: 1;
    }

    /* Integrations Section */
    .integrations {
      background: var(--bg-secondary);
      padding: 4rem 0;
      overflow: hidden;
    }

    .integrations-slider {
      display: flex;
      gap: 3rem;
      animation: slide 20s linear infinite;
      margin-top: 3rem;
    }

    @keyframes slide {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .integration-logo {
      flex-shrink: 0;
      width: 120px;
      height: 60px;
      background: var(--card-bg);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: var(--text-secondary);
      border: 1px solid var(--border-color);
    }

    /* Pricing Section */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .pricing-card {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 2.5rem;
      text-align: center;
      border: 2px solid var(--border-color);
      transition: all 0.3s ease;
      position: relative;
    }

    .pricing-card.featured {
      border-color: var(--primary);
      transform: scale(1.05);
    }

    .pricing-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: var(--bg-primary);
      padding: 0.3rem 1rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: bold;
    }

    .pricing-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--text-primary);
    }

    .price {
      font-size: 3rem;
      font-weight: bold;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .price span {
      font-size: 1rem;
      color: var(--text-secondary);
    }

    .pricing-features {
      list-style: none;
      margin: 2rem 0;
    }

    .pricing-features li {
      padding: 0.5rem 0;
      color: var(--text-secondary);
    }

    .pricing-features li i {
      color: var(--primary);
      margin-right: 0.5rem;
    }
    
    /* Testimonials Section */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .testimonial-card {
      background: var(--card-bg);
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 5px 15px var(--shadow);
      border: 1px solid var(--border-color);
    }
    
    .testimonial-header {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .testimonial-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }
    
    .testimonial-info h4 {
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
      color: var(--text-primary);
    }
    
    .testimonial-info .stars {
      color: #ffc107;
    }
    
    .testimonial-card p {
      font-style: italic;
      color: var(--text-secondary);
    }
    
    /* CTA Section */
    .cta {
      background: var(--gradient);
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      z-index: 0;
    }
    
    .cta-content {
      position: relative;
      z-index: 1;
    }
    
    .cta h2 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: var(--bg-primary);
    }
    
    .cta p {
      font-size: 1.3rem;
      color: var(--bg-primary);
      margin-bottom: 2.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .cta .btn-primary {
      background: var(--bg-primary);
      color: var(--primary);
    }

    .cta .btn-primary:hover {
      background: var(--bg-secondary);
    }
    
    /* FAQ Section */
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    @media (min-width: 768px) {
      .faq-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .faq-item {
      background: var(--card-bg);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 10px var(--shadow);
      border: 1px solid var(--border-color);
    }
    
    .faq-question {
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      font-size: 1rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
      color: var(--text-primary);
    }
    
    .faq-question:hover {
      background: var(--primary-light);
    }
    
    .faq-question i {
      transition: var(--transition);
      color: var(--primary);
    }
    
    .faq-question.active i {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-answer.show {
      max-height: 300px;
      padding: 0 1.5rem 1.5rem;
    }
    
    .faq-answer p {
      color: var(--text-secondary);
    }
    
    /* Footer */
    footer {
      background: var(--bg-secondary);
      color: var(--text-primary);
      padding: 4rem 0 2rem;
      border-top: 1px solid var(--border-color);
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }
    
    .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: var(--text-primary);
    }
    
    .footer-column h4 {
      font-size: 1.1rem;
      margin-bottom: 1.2rem;
      color: var(--text-primary);
    }
    
    .footer-column p {
      color: var(--text-secondary);
      margin-bottom: 1rem;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 0.8rem;
    }
    
    .footer-column ul li a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-column ul li a:hover {
      color: var(--primary);
      padding-left: 5px;
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .newsletter-form input {
      flex: 1;
      padding: 0.8rem;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      background: var(--bg-primary);
      color: var(--text-primary);
    }

    .newsletter-form button {
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      background: var(--gradient);
      color: var(--bg-primary);
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      transform: translateY(-2px);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .hero-text {
        max-width: 700px;
        margin: 0 auto;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .hero-image {
        max-width: 600px;
        margin: 0 auto;
      }
    }
    
    @media (max-width: 768px) {
      .hamburger {
        display: flex !important;
        position: absolute;
        right: 16px;
        top: 12px;
        z-index: 2002;
        width: 44px;
        height: 38px;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        padding: 6px !important;
        cursor: pointer;
      }
      
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        box-shadow: 0 10px 15px var(--shadow);
        display: none;
        border-bottom: 1px solid var(--border-color);
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .hero-text h1 {
        font-size: 2.5rem;
      }
      
      .section-header h2 {
        font-size: 2rem;
      }
      
      .cta h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }
      
      .btn {
        width: 100%;
      }
    }
    .breadcrumbs {
  font-size: 0.9rem;
  margin: 1rem 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  color: var(--text-muted);
}

.breadcrumbs li a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumbs li::after {
  content: "/";
  margin: 0 0.3rem;
  color: var(--text-muted);
}

.breadcrumbs li:last-child::after {
  content: "";
}
/* Feature Page Styles */
.features-hero {
  padding: 4rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.features-section {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
}

.features-detailed {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin: 2rem 0;
}

.feature-detail {
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.feature-detail h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-section {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.about-column {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.about-column h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-column ul {
  list-style: none;
  margin-left: 1rem;
}

.about-column li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.about-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.team {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.contact-form-container {
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-container h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(6, 217, 217, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2306D9D9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.btn-submit {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 217, 217, 0.3);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  padding: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-card h3 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 30px;
}

.info-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-item p,
.info-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-item a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-item a:hover {
  text-decoration: underline;
}

.social-connect {
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  text-align: center;
}

.social-connect h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--bg-primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(6, 217, 217, 0.3);
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-container,
  .contact-info-card {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .info-item {
    gap: 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.cta-section {
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cta-section p {
  color: var(--text-secondary);
}