/* =========================================================
   1. CSS VARIABLES (Theme Core)
========================================================= */
:root {
  --bg-main: #05060f;
  --bg-soft: #0b0f1a;

  --neon-purple: #8b5cf6;
  --neon-blue: #22d3ee;
  --neon-pink: #ec4899;

  --text-main: #ffffff;
  --text-muted: rgba(255,255,255,0.65);

  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);

  --radius-lg: 24px;
  --radius-md: 16px;

  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* =========================================================
   2. RESET & BASE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   3. GLOBAL LAYOUT
========================================================= */
main {
  position: relative;
  z-index: 1;
}

section {
  min-height: 100vh;
  padding: 110px 8%;
  position: relative;
}

/* =========================================================
   4. LOADER (Neon Morphing Blob)
========================================================= */
#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #0b0f1a, #05060f);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-blob {
  position: relative;
  width: 150px;
  height: 150px;

  background: linear-gradient(
    120deg,
    var(--neon-purple),
    var(--neon-blue),
    var(--neon-pink),
    var(--neon-purple)
  );
  background-size: 300% 300%;

  border-radius: 42% 58% 63% 37% / 40% 44% 56% 60%;

  animation:
    blobMorph 5s ease-in-out infinite,
    blobFloat 2.6s ease-in-out infinite,
    blobGradient 4s linear infinite;

  box-shadow:
    0 0 35px rgba(139,92,246,0.7),
    0 0 70px rgba(34,211,238,0.45);
}

/* Aura */
.loader-blob::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(
    circle,
    rgba(139,92,246,0.35),
    transparent 65%
  );
  filter: blur(30px);
  animation: auraPulse 2.4s ease-in-out infinite;
  z-index: -1;
}

/* Animations */
@keyframes blobMorph {
  0% {
    border-radius: 42% 58% 63% 37% / 40% 44% 56% 60%;
  }
  50% {
    border-radius: 58% 42% 37% 63% / 60% 56% 44% 40%;
  }
  100% {
    border-radius: 42% 58% 63% 37% / 40% 44% 56% 60%;
  }
}

@keyframes blobFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.08) rotate(6deg);
  }
}

@keyframes blobGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes auraPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

/* =========================================================
   5. NAVBAR (Glass – Placeholder)
========================================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;

  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
}

/* =========================================================
   6. HERO (Placeholder – next step)
========================================================= */
#home {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   7. UTILITIES
========================================================= */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.neon-text {
  background: linear-gradient(
    90deg,
    var(--neon-purple),
    var(--neon-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
:root {
  --bg-dark: #05060f;
  --bg-navy: #0b0f1a;

  --neon-purple: #8b5cf6;
  --neon-pink: #ec4899;
  --neon-blue: #22d3ee;

  --text-main: #e5e7eb;
}
body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 20% 20%,
      rgba(139, 92, 246, 0.12),
      transparent 45%
    ),
    radial-gradient(circle at 80% 30%,
      rgba(34, 211, 238, 0.10),
      transparent 40%
    ),
    radial-gradient(circle at 50% 80%,
      rgba(236, 72, 153, 0.08),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      var(--bg-dark),
      var(--bg-navy) 40%,
      var(--bg-dark) 100%
    );

  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%,
      rgba(139, 92, 246, 0.18),
      transparent 50%
    ),
    radial-gradient(circle at 70% 60%,
      rgba(34, 211, 238, 0.14),
      transparent 50%
    );

  filter: blur(90px);
  opacity: 0.6;
  animation: ambientMove 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ambientMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}
body::after {
  content: "";
  position: fixed;
  inset: 0;

  background-image:
    radial-gradient(1.8px 2px at 12% 22%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.5px 2px at 28% 72%, rgba(139,92,246,0.55), transparent),
    radial-gradient(1.9px 2px at 42% 38%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.7px 2px at 60% 18%, rgba(34,211,238,0.55), transparent),
    radial-gradient(1.8px 2px at 76% 82%, rgba(236,72,153,0.5), transparent),
    radial-gradient(2px 2px at 90% 52%, rgba(255,255,255,0.45), transparent);

  background-size: 190px 190px;
  animation: snowDrift 26s linear infinite;

  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}
@keyframes snowDrift {
  from { transform: translateY(-150px); }
  to   { transform: translateY(150px); }

}
main,
section,
#navbar {
  position: relative;
  z-index: 1;
}
.glass-navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  background: rgba(15, 16, 35, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;

  box-shadow:
    0 0 20px rgba(139,92,246,0.25),
    inset 0 0 15px rgba(255,255,255,0.05);
}


.nav-list {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-list a {
  display: flex;
  align-items: center;
  gap: 0.4rem;

  color: #e5e7eb;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;

  transition: all 0.3s ease;
}

.nav-list a:hover {
  background: rgba(139,92,246,0.15);
  box-shadow: 0 0 12px rgba(139,92,246,0.6);
  color: #fff;
}

.icon {
  font-size: 1rem;
}.nav-list {
  display: flex;
  gap: 1.2rem;
  align-items: center;

  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  list-style: none;
}

/* extra safety */
.nav-list li::before {
  content: none !important;
}
@media (min-width: 769px) {
  .mobile-only-menu {
    display: none;
  }
}

/* ===============================
   MOBILE HORIZONTAL NAVBAR
   =============================== */
@media (max-width: 768px) {

  #mobileMenuPanel {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.4rem;
   
  }

  #mobileMenuPanel a {
    display: flex;
    align-items: center;
    gap: 0.15rem;

    margin-right: 0.1rem;    
    border-radius: 10px;

    font-size: 0.6rem;      /* ✅ کنترل اندازه متن */
    font-weight: 500;
    white-space: nowrap;

    color: #fff;
    text-decoration: none;

    transition: all 0.25s ease;
  }

  #mobileMenuPanel a span {
    font-size: 0.6rem;       /* ✅ اندازه آیکن */
    line-height: 1;
  }

  #mobileMenuPanel a:hover {
    background: rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.45);
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none !important;
  }
}


/* =========================
   Home / Hero (Centered)
========================= */
.home-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
}

.home-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;

  animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile Image */
.profile-image img {
  width: 350px;
  max-width: 75vw;
  height: auto;        /* ✅ کلیدی */
  display: block;
  border-radius: 14px;
  box-shadow:
    0 0 40px rgba(139,92,246,0.45),
    0 0 90px rgba(56,189,248,0.25);
}


/* Title */
.hero-title {
  font-size: 2rem;
  font-weight: 600;
}

.hero-title span {
  background: linear-gradient(
    90deg,
    #8b5cf6,
    #ec4899,
    #38bdf8
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   Skill Rotator (One by One)
========================= */
.skill-rotator {
  position: relative;
  height: 2.2em;
  margin-top: 0.4rem;
  width: 100%;
  max-width: 520px;   /* ✅ خیلی مهم */
  text-align: center;
}

.skill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;

  font-size: 1.2rem;
  line-height: 1.6;          /* ✅ فاصله خط درست */
  white-space: nowrap;       /* ✅ جلوگیری از شکستن خط */
  color: #d1d5f0;

  transition: all 0.6s ease;
}

.skill.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* =========================
   About Section
========================= */

.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
}

.about-container {
  max-width: 820px;
  padding: 3.5rem 3rem;
  border-radius: 22px;
  text-align: center;
}

/* Glass effect */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 40px rgba(160, 90, 255, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.03);
}

/* Title */
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: -3rem;
  letter-spacing: 0.5px;
}

.about-title span {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.about-text {
  font-size: 1.05rem;
  line-height: 2.1;
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-text strong {
  color: #fff;
}

.about-text.subtle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.about-text.subtle span {
  color: #c084fc;
}
/* ===============================
   SKILLS – SIGNATURE SECTION
================================ */

.skills-section {
  padding: 30px 6vw 140px;
  scroll-margin-top: 120px; /* ✅ فیکس اسکرول Navbar */
}

.skills-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 90px;
  letter-spacing: 1px;
}
.skills-title span {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Layout */
.skills-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .skills-wrapper {
    grid-template-columns: 1fr;
    gap: 90px;
  }
}

/* ===============================
   BLOOMS
================================ */

.skills-blooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-items: center;
}

/* ===================== BLOOM ===================== */
.bloom {
  width: 150px;
  height: 150px;
  position: relative;
  border-radius: 28px;

  background:
    radial-gradient(circle at top,
      rgba(190,150,255,0.45),
      rgba(30,18,60,0.95) 70%);

  box-shadow:
    0 0 35px rgba(160,120,255,0.45),
    0 0 90px rgba(120,80,255,0.25);

  /* ✅ پایه چرخش */
  transform: rotate(45deg);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

/* ===================== TEXT (FIXED) ===================== */
.bloom span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;

  /* ✅ خنثی‌سازی چرخش لوزی */
  transform: rotate(-45deg);

  font-size: 0.95rem;
  letter-spacing: 0.4px;
  user-select: none;
  pointer-events: none;
}

/* ===================== HOVER ===================== */
.bloom:hover {
  transform: rotate(45deg) scale(1.08);
  box-shadow:
    0 0 55px rgba(190,150,255,0.75),
    0 0 130px rgba(160,120,255,0.45);
}

/* ===================== ROTATION ===================== */
@keyframes diamond-rotate {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg); /* 360 + 45 */
  }
}

@keyframes text-counter-rotate {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(-405deg);
  }
}

/* ✅ وقتی لوزی می‌چرخه */
.bloom.is-rotating {
  animation: diamond-rotate 12s linear infinite;
}

/* ✅ متن ضدچرخش */
.bloom.is-rotating span {
  animation: text-counter-rotate 12s linear infinite;
}

/* ✅ hover سریع‌تر */
.bloom.is-rotating:hover {
  animation-duration: 6s;
}

.bloom.is-rotating:hover span {
  animation-duration: 6s;
}

/* ===============================
   THREADS (SKILL BARS)
================================ */

.skills-threads {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.thread-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
  opacity: 0.9;
}

.thread-bar {
  height: 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 40px;
  overflow: hidden;
  
}

.thread-fill {
  display: block;
  height: 100%;
  width: var(--percent);
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(185,140,255,0.95),
    rgba(225,200,255,0.55)
  );

  box-shadow:
    0 0 18px rgba(190,150,255,0.75),
    0 0 36px rgba(160,120,255,0.4),
    inset 10px 10px 10px rgba(255,255,255,0.35);
}
@media (max-width: 600px) {

  .skills-blooms {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bloom {
    width: 120px;
    height: 120px;
  }

}
/* SECTION */
.portfolio-section {
  padding: 100px 6%;
}

.section-title {
  text-align: right;
  margin-bottom: 40px;
}

/* ✅ GRID = 4 cards per row */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ✅ CARD */
.portfolio-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: cardEnter 0.8s ease forwards;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,150,255,0.35);
}

/* ✅ IMAGE */
.card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ✅ CONTENT */
.card-content {
  padding: 14px;
  text-align: center;
}

.card-content h3 {
  font-size: 0.95rem;
}

.card-content p {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ✅ GALLERY HIDDEN */
.gallery-images {
  display: none;
}

/* ✅ ENTRY ANIMATION */
@keyframes cardEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ✅ RESPONSIVE */
@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ✅ LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 12px;
}

#lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

#lightbox button {
  background: none;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.section-title span {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-blog {
  padding: 120px 7%;
}

/* HEADER */
.blog-label {
  display: block;
  width: 100%;
  text-align: center;

  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto 3rem;

  background: linear-gradient(90deg, #e0d5ea, #f3e6ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

/* LIST */
.blog-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* ROW */
.blog-row {
  position: relative;
  padding: 32px 38px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* یک سایه و Glow لطیف هنگام هاور */
@media (hover: hover) {
  .blog-row:hover {
    border-color: rgba(79,195,247,0.35);
    box-shadow: 0 0 25px rgba(79,195,247,0.1);
    transform: translateY(-3px);
  }
}

/* خط نورانی گوشه پایین */
.blog-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #4fc3f7, #00e1ff, #b388ff);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.blog-row:hover::after {
  width: 100%;
}

/* متن‌ها */
.blog-text h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.blog-text p {
  opacity: 0.7;
}


/* TEXT */
.blog-text {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title title"
    "text link";
  gap: 6px 10px;
}

.blog-text h3 {
  grid-area: title;
}

.blog-text p {
  grid-area: text;
  margin: 0;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-link {
  grid-area: link;
  align-self: center;
}


/* Desktop hover only */
@media (hover: hover) {
  .blog-row:hover {
    border-color: rgba(79,195,247,0.5);
  }

  .blog-row:hover .blog-link {
    transform: translateX(-6px);
    opacity: 1;
  }
}

@media (max-width: 768px) {

  .blog-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-row {
    flex-direction: column;
    gap: 14px;
  }

  .blog-text p {
    max-width: 100%;
  }

  .blog-row:active {
    transform: scale(0.98);
  }
}
/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 40px 8%;
  padding-top: 130px;
  padding-bottom: 70px;
  background: transparent;
  color: #fff;
}


/* LAYOUT */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 22px;
  padding: 40px;
}

.contact-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #9ffcff;
  letter-spacing: 1px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 25px;
  margin-top: 5px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00f6ff;
  box-shadow: 0 0 14px rgba(0, 246, 255, 0.45);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, #00f6ff, #7f00ff);
  color: #000;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 246, 255, 0.7);
}

/* IMAGE */
.contact-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image-box img {
  width: 100%;
  max-width: 400px;
  height: 580px;
  display: block;
  border-radius: 26px;
  box-shadow: 0 0 60px rgba(0, 246, 255, 0.25);
}


/* ICONS */
.contact-icons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.contact-icons a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f6ff;
  font-size: 22px;
  transition: 0.4s;
}

.contact-icons a:hover {
  background: #00f6ff;
  color: #000;
  box-shadow: 0 0 26px rgba(0, 246, 255, 0.8);
}

/* =========================
   MOBILE (same layout, smaller)
========================= */
@media (max-width: 768px) {

  .contact-section {
    padding: 28px 6%;
  padding-top: 80px;
  padding-bottom: 60px;

  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-image-box {
    order: 1;
  }

  .contact-form-box {
    order: 2;
    padding: 13px;
  }

  .contact-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 12.5px;
    padding: 12px 10px;
    margin-bottom: 6px;
  }

  .contact-form textarea {
    min-height: 70px;
  }

  .contact-form button {
    padding: 9px;
    font-size: 13px;
  }

  .contact-image-box img {
    max-width: 140px;
    max-height: 165px;
    margin: -3px;
    display: block;
    border-radius: 18px;
  }
  .contact-icons {
  margin-top: 14px;
  gap: 5px;
}

}
