
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ================= THEME VARIABLES ================= */
:root {
  --bg: #f1f5f9;
  --text: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.3);
  --primary: #2563eb;
}

body.dark {
  --bg: #020617;
  --text: #e5e7eb;
  --glass-bg: rgba(15, 23, 42, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --primary: #38bdf8;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(15px);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= LOGO ================= */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--text);
  text-decoration: none;
}

/* ================= NAV ================= */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--primary);
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
  position: absolute;
  top: 38px;
  left: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 15px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= BUTTON ================= */
.nav-btn {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* ================= TOGGLE ================= */
.toggle-theme {
  cursor: pointer;
  font-size: 18px;
  border: none;
  background: transparent;
  color: var(--text);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 26px;
  background: var(--text);
  margin: 4px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav.active {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 18px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding-left: 15px;
  }

  .hamburger {
    display: flex;
  }
}


/* ================= WHY CHOOSE US ================= */
.why-us {
  padding: 90px 20px;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.why-header {
  text-align: center;
  max-width: 650px;
  margin: auto auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 15px;
}

.why-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.why-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* ================= GRID ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.why-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: inline-block;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 30px;
  }
}

/* ================= HERO ================= */
.hero {
  padding: 90px 20px 70px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* ================= LEFT ================= */
.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 30px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 17px;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* ================= BUTTONS ================= */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  padding: 14px 26px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.btn-primary.small {
  padding: 10px 20px;
  font-size: 14px;
}

/* ================= STATS ================= */
.hero-stats {
  margin-top: 35px;
  display: flex;
  gap: 30px;
}

.hero-stats h3 {
  font-size: 26px;
  color: var(--primary);
}

.hero-stats span {
  font-size: 14px;
  opacity: 0.85;
}

/* ================= RIGHT ================= */
.hero-visual {
  display: flex;
  justify-content: center;
}

.glass-card {
  max-width: 320px;
  padding: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.glass-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: auto auto 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }
}


/* ================= ABOUT US ================= */
.about-us {
  padding: 90px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ================= CONTENT ================= */
.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.about-points {
  margin: 20px 0 30px;
  list-style: none;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ================= VISUAL ================= */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary);
}

.about-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-points {
    display: inline-block;
    text-align: left;
  }

  .about-visual {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-card {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 30px;
  }
}


/* ================= SERVICES ================= */
.services {
  padding: 90px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto auto 60px;
}

.services-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* ================= GRID ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 35px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 45px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* ================= LINK ================= */
.service-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 30px;
  }
}


/* ================= FAQ ================= */
.faq {
  padding: 90px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* ================= HEADER ================= */
.faq-header {
  text-align: center;
  max-width: 650px;
  margin: auto auto 50px;
}

.faq-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* ================= LIST ================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================= ITEM ================= */
.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ================= QUESTION ================= */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 25px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ================= ANSWER ================= */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  font-size: 15px;
  opacity: 0.9;
}

/* ================= ACTIVE ================= */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 30px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 90px 20px;
}

.testimonials-container {
  max-width: 1100px;
  margin: auto;
}

/* ================= HEADER ================= */
.testimonials-header {
  text-align: center;
  max-width: 650px;
  margin: auto auto 60px;
}

.testimonials-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.testimonials-header p {
  font-size: 16px;
  opacity: 0.9;
}

/* ================= SLIDER ================= */
.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ================= CARD ================= */
.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 14px 45px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-user strong {
  font-size: 16px;
}

.testimonial-user span {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}

/* ================= CONTROLS ================= */
.testimonial-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.testimonial-controls button {
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .testimonial-text {
    font-size: 16px;
  }
}


/* ================= FOOTER ================= */
.footer {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border);
  padding: 70px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ================= COLUMNS ================= */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-logo {
  font-size: 24px;
  color: var(--primary);
}

.footer-col p {
  font-size: 15px;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  opacity: 0.85;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary);
}

/* ================= CONTACT ================= */
.footer-contact li {
  font-size: 15px;
  opacity: 0.9;
}

/* ================= BOTTOM ================= */
.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
}

/* ================= SOCIAL ================= */
.footer-social a {
  margin-left: 12px;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.8;
}

.footer-social a:hover {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}


/* ================= ABOUT PAGE ================= */
.about-page {
  padding: 90px 20px;
}

.about-page-container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.about-page-header {
  text-align: center;
  max-width: 750px;
  margin: auto auto 70px;
}

.about-page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-page-header p {
  font-size: 17px;
  opacity: 0.9;
}

/* ================= STORY ================= */
.about-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.about-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 35px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.about-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* ================= VALUES ================= */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 30px;
  text-align: center;
}

.value-card h3 {
  margin-bottom: 10px;
}

/* ================= HIGHLIGHT ================= */
.about-highlight {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.about-highlight h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-highlight ul {
  list-style: none;
  margin-bottom: 30px;
}

.about-highlight ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-page-header h1 {
    font-size: 32px;
  }
}


/* ================= SERVICE PAGE ================= */
.service-page {
  padding: 90px 20px;
}

.service-container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HERO ================= */
.service-hero {
  text-align: center;
  max-width: 800px;
  margin: auto auto 60px;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.service-hero p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* ================= INTRO ================= */
.service-intro {
  max-width: 850px;
  margin: auto auto 70px;
  font-size: 16px;
  text-align: center;
  opacity: 0.9;
}

/* ================= SECTIONS ================= */
.service-section {
  margin-bottom: 80px;
}

.service-section h2 {
  font-size: 34px;
  margin-bottom: 30px;
  text-align: center;
}

/* ================= GRID ================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 30px;
}

/* ================= ROLES ================= */
.role-list {
  list-style: none;
  max-width: 700px;
  margin: auto;
}

.role-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

/* ================= PROCESS ================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-step {
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 25px;
  text-align: center;
}

.process-step span {
  font-size: 26px;
  color: var(--primary);
  font-weight: bold;
}

/* ================= HIGHLIGHT ================= */
.service-highlight {
  text-align: center;
  max-width: 700px;
  margin: auto auto 80px;
}

.service-highlight ul {
  list-style: none;
}

/* ================= CTA ================= */
.service-cta {
  text-align: center;
  background: var(--glass-bg);
  border-radius: 25px;
  border: 1px solid var(--border);
  padding: 50px 30px;
}

.service-cta h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 32px;
  }
}


/* ================= EXTRA SECTIONS ================= */
.industry-grid,
.tech-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.industry-card,
.tech-card,
.metric-card {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 25px;
  text-align: center;
}

.metric-card h3 {
  font-size: 36px;
  color: var(--primary);
}

.faq-list {
  max-width: 700px;
  margin: auto;
}

.faq-list details {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
  cursor: pointer;
}

.faq-list summary {
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .industry-grid,
  .tech-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= UNIQUE FAQ STYLING ================= */
.unique-faq-section {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 50px 20px;
  max-width: 900px;
  margin: 50px auto;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #000000;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  color: #4f46e5;
  margin-bottom: 30px;
}

.faq-list-unique {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-unique {
  background: rgba(255,255,255,0.02);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: 0.3s;
}

.faq-item-unique[open] {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.faq-item-unique summary {
  font-weight: 600;
  outline: none;
  font-size: 1rem;
}

.faq-item-unique p {
  margin-top: 8px;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 5px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.7rem;
  }
  .faq-item-unique summary {
    font-size: 0.95rem;
  }
  .faq-item-unique p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .unique-faq-section {
    padding: 30px 15px;
  }
  .faq-title {
    font-size: 1.5rem;
  }
}


/* ================= CONTACT US FORM STYLING ================= */
.contact-section {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 50px 20px;
  max-width: 800px;
  margin: 50px auto;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: #363535;
}

.contact-title {
  font-size: 2rem;
  text-align: center;
  color: #4f46e5;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 30px;
  color: #9a9b9d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #000000;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 8px rgba(79,70,229,0.4);
}

textarea {
  resize: none;
}

.btn-submit {
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #6366f1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-title {
    font-size: 1.7rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 15px;
  }
}


