
/* ======================================================
   GLOBAL
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #1b1b1b;
  color: #f5f5f5;
  overflow-x: hidden;
}
/* ======================================================
   PAGE LOAD ANIMATION
====================================================== */

body {
  animation: pageFade 0.8s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;

    transform: scale(1.01);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}
/* ======================================================
   BACKGROUND GLOW
====================================================== */

body::before {
  content: "";

  position: fixed;

  top: -200px;
  right: -200px;

  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(200, 161, 74, 0.1), transparent 70%);

  pointer-events: none;

  z-index: -2;
}

/* ======================================================
   BOTTOM GLOW
====================================================== */

.bg-glow-bottom {
  position: fixed;

  bottom: -250px;
  left: -250px;

  width: 550px;
  height: 550px;

  background: radial-gradient(
    circle,
    rgba(200, 161, 74, 0.06),
    transparent 70%
  );

  pointer-events: none;

  z-index: -2;
}

/* ======================================================
   GRAIN TEXTURE
====================================================== */

.grain {
  position: fixed;

  inset: 0;

  background-image: radial-gradient(
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px
  );

  background-size: 4px 4px;

  opacity: 0.18;

  pointer-events: none;

  z-index: 9999;
}

/* ======================================================
   SCROLL PROGRESS BAR
====================================================== */

.scroll-progress {
  position: fixed;

  top: 0;
  left: 0;

  width: 0%;
  height: 3px;

  background: linear-gradient(to right, #c8a14a, #f0d28a);

  z-index: 99999;

  box-shadow:
    0 0 10px rgba(200, 161, 74, 0.4),
    0 0 20px rgba(200, 161, 74, 0.2);
}

/* ======================================================
   SCROLLBAR
====================================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #151515;
}

::-webkit-scrollbar-thumb {
  background: #c8a14a;
  border-radius: 20px;
}

/* ======================================================
   SIDEBAR
====================================================== */
.sidebar {
  position: fixed;

  top: 0;
  left: 0;

  width: 270px;
  height: 100vh;

  background: #111111;

  border-right: 1px solid rgba(255, 255, 255, 0.06);

  padding: 34px 26px 24px;

  display: flex;
  flex-direction: column;

  overflow-y: auto;

  z-index: 999;
}

/* HIDE SCROLLBAR */
.sidebar::-webkit-scrollbar {
  width: 0;
}

/* LOGO */
.sidebar-logo {
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-logo img {
  width: 95px;
  margin-bottom: 12px;
}

.sidebar-logo h2,
.mobile-logo {
  background: linear-gradient(180deg, #f4d27a, #c8a14a, #8f6a22);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MENU */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.sidebar-menu a {
  position: relative;
  width: fit-content;
  text-decoration: none;
  color: #d6d6d6;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 0;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.sidebar-menu a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a14a;
  transition: 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  color: #c8a14a;
  padding-left: 10px;
}

.sidebar-menu a:hover::before,
.sidebar-menu a.active::before {
  transform: translateY(-50%) scale(1);
}

/* BOTTOM SECTION */
.sidebar-bottom {
  margin-top: auto;
  padding-top: 24px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLE */
.sidebar-contact-title {
  color: #c8a14a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* SOCIAL */
.sidebar-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-items: center;
  align-items: center;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.sidebar-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.sidebar-social a:hover {
  transform: translateY(-4px) rotate(6deg);
  border-color: #c8a14a;
  box-shadow: 0 0 18px rgba(200, 161, 74, 0.22);
}

.sidebar-social img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sidebar-social a:hover img {
  transform: scale(1.08);
}

/* ======================================================
   MOBILE HEADER
   Hidden on desktop. media.css will show/style it on tablet/mobile.
====================================================== */
.mobile-header {
  display: none;
}

.mobile-logo {
  text-decoration: none;
  color: #ffffff;
}

/* ======================================================
   MAIN CONTENT
====================================================== */
.main-content {
  margin-left: 270px;
  width: calc(100% - 270px);
}

/* ======================================================
   COMMON SECTION
====================================================== */
.section {
  padding: 75px 40px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.section-heading span {
  width: 56px;
  height: 2px;
  background: #c8a14a;
}

.section-heading h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 6px;
}

.section-heading p {
  color: #9f9f9f;
  font-size: 14px;
}

/* ======================================================
   SECTION DIVIDER
====================================================== */

.section {
  position: relative;
}

.section::after {
  content: "";

  position: absolute;

  bottom: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 140px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 161, 74, 0.35),
    transparent
  );
}
/* ======================================================
   PREMIUM HEADING GLOW
====================================================== */

.section-heading h2,
.about-info h3,
.message-info h3,
.hero-card h2,
.skill-group h3 {
  text-shadow: 0 0 18px rgba(200, 161, 74, 0.08);
}

/* ======================================================
   HERO
====================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 24px;
}

.hero-card {
  width: 95%;
  max-width: 1300px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(36, 36, 36, 0.98),
    rgba(24, 24, 24, 0.98)
  );
  border-radius: 30px;
  padding: 42px 55px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.25),
    inset 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-top-icon img {
  width: 230px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 10px rgba(200, 161, 74, 0.25));
}

.hero-card h1 {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero-card h2 {
  font-size: 22px;
  font-weight: 500;
  color: #c8a14a;
  margin-bottom: 28px;
}

.hero-img {
  margin-top: 8px;
}

.hero-img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #c8a14a;
  box-shadow:
    0 0 20px rgba(200, 161, 74, 0.18),
    0 0 40px rgba(0, 0, 0, 0.2);
}

.hero-card p {
  color: #bbbbbb;
  line-height: 1.8;
  margin-top: 24px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =========================================
   HERO TITLE SWITCH
========================================= */

.hero-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;

  font-size: 42px;
  line-height: 1.25;

  font-weight: 700;

  color: #ffffff;
}

/* OUTER */
.title-switch {
  position: relative;

  height: 58px;

  overflow: hidden;

  display: inline-flex;

  align-items: flex-start;
}

/* TRACK */
.title-track {
  display: flex;
  flex-direction: column;

  animation: titleSlide 6s infinite ease-in-out;
}

/* TEXT */
.title-track span {
  height: 58px;

  display: flex;
  align-items: center;

  color: #c8a14a;

  white-space: nowrap;
}

/* AUTO ANIMATION */
@keyframes titleSlide {
  0%,
  45% {
    transform: translateY(0);
  }

  55%,
  90% {
    transform: translateY(-58px);
  }

  100% {
    transform: translateY(0);
  }
}

.primary-btn,
.secondary-btn,
.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #c8a14a;
  color: #111111;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(200, 161, 74, 0.25);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  background: transparent;
}

.secondary-btn:hover {
  border-color: #c8a14a;
  color: #c8a14a;
  transform: translateY(-3px);
}

/* ======================================================
   IMAGE GLOW
====================================================== */

.hero-img img,
.about-image img {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.hero-img img:hover,
.about-image img:hover {
  transform: scale(1.03);

  box-shadow:
    0 0 24px rgba(200, 161, 74, 0.22),
    0 0 60px rgba(0, 0, 0, 0.28);
}

/* ======================================================
   ABOUT
====================================================== */

.about-grid {
  display: block;
}

/* ======================================================
   IMAGE
====================================================== */

.about-image {
  float: left;

  width: 350px;

  margin-right: 42px;
  margin-bottom: 24px;
}

.about-image img {
  width: 100%;

  border-radius: 28px;

  border: 4px solid #c8a14a;

  object-fit: cover;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 12px 35px rgba(0, 0, 0, 0.28);
}

/* ======================================================
   ABOUT INFO
====================================================== */

.about-info {
  width: 100%;
}

.about-info p {
  color: #b8b8b8;

  line-height: 1.9;

  margin-bottom: 20px;

  font-size: 17px;
}

/* ======================================================
   HERO TITLE
====================================================== */

.hero-title {
  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  font-size: 52px;

  line-height: 1.2;

  font-weight: 700;

  margin-bottom: 28px;

  color: #ffffff;
}

/* ======================================================
   TITLE SWITCH
====================================================== */

.title-switch {
  position: relative;

  height: 64px;

  overflow: hidden;

  display: inline-flex;

  align-items: flex-start;
}

.title-track {
  display: flex;

  flex-direction: column;

  animation: titleSlide 6s infinite ease-in-out;
}

.title-track span {
  height: 64px;

  display: flex;

  align-items: center;

  color: #c8a14a;

  white-space: nowrap;
}

@keyframes titleSlide {
  0%,
  45% {
    transform: translateY(0);
  }

  55%,
  90% {
    transform: translateY(-64px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ======================================================
   GOLD TEXT
====================================================== */

.gold-text {
  color: #c8a14a;

  font-weight: 600;

  text-shadow: 0 0 10px rgba(200, 161, 74, 0.12);
}

/* ======================================================
   PERSONAL DETAILS
====================================================== */

.personal-details {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;

  margin-top: 34px;
}

.personal-details div {
  background: #242424;

  padding: 18px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.04);
}

.personal-details strong {
  display: block;

  color: #c8a14a;

  margin-bottom: 8px;

  font-size: 15px;
}

.personal-details span {
  color: #d6d6d6;

  line-height: 1.7;
}

/* ======================================================
   BUTTONS
====================================================== */

.about-buttons {
  display: flex;

  gap: 16px;

  margin-top: 34px;

  flex-wrap: wrap;
}

.about-buttons .primary-btn,
.about-buttons .secondary-btn {
  padding: 14px 26px;

  border-radius: 14px;

  font-size: 15px;

  min-width: 180px;
}
/* ======================================================
   SERVICES
====================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #242424;
  padding: 32px 24px;
  border-radius: 22px;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-card img {
  width: 50px;
  margin-bottom: 22px;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 24px;
}

.service-card p {
  color: #b8b8b8;
  line-height: 1.8;
}

/* ======================================================
   SKILLS
====================================================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-group {
  background: #242424;
  padding: 28px;
  border-radius: 22px;
}

.skill-group h3 {
  margin-bottom: 26px;
  color: #c8a14a;
  font-size: 24px;
}

/* ======================================================
   SKILL ITEM
====================================================== */

.skill-item {
  display: grid;
  grid-template-columns: 38px 1fr 120px;

  align-items: center;

  column-gap: 14px;

  margin-bottom: 22px;
}

.skill-item img {
  width: 38px;
  height: 38px;

  object-fit: contain;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.skill-item:hover img {
  transform: scale(1.12);

  filter: drop-shadow(0 0 10px rgba(200, 161, 74, 0.28));
}

.skill-item > div {
  display: contents;
}

.skill-item span {
  color: #dddddd;
  font-size: 16px;
}

/* ======================================================
   SKILL LEVEL DOTS
====================================================== */

.skill-level {
  width: 120px;

  text-align: right;

  white-space: nowrap;

  justify-self: end;
}

.skill-level::before {
  font-size: 18px;

  letter-spacing: 4px;

  line-height: 1;

  display: inline-block;

  text-shadow: 0 0 8px rgba(200, 161, 74, 0.45);
}

/* 1/5 */
.skill-level.level-1::before {
  content: "● ○ ○ ○ ○";
  color: #c8a14a;
}

/* 2/5 */
.skill-level.level-2::before {
  content: "● ● ○ ○ ○";
  color: #c8a14a;
}

/* 3/5 */
.skill-level.level-3::before {
  content: "● ● ● ○ ○";
  color: #c8a14a;
}

/* 4/5 */
.skill-level.level-4::before {
  content: "● ● ● ● ○";
  color: #c8a14a;
}

/* 5/5 */
.skill-level.level-5::before {
  content: "● ● ● ● ●";
  color: #c8a14a;
}

/* ======================================================
   PROJECTS
====================================================== */

.projectsSwiper .swiper-slide {
  width: 100% !important;
  height: auto;
  display: flex;
}

.project-card {
  background: #242424;
  border-radius: 22px;

  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255, 255, 255, 0.04);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ======================================================
   PROJECT IMAGE
====================================================== */

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;

  transition: transform 0.5s ease;
}

/* ======================================================
   PROJECT CONTENT
====================================================== */

.project-content {
  padding: 24px;
  flex: 1;

  display: flex;
  flex-direction: column;
}

.project-content h3 {
  margin-bottom: 12px;
}

.project-content p {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;

  flex-grow: 1;
}

/* ======================================================
   PROJECT TAGS
====================================================== */

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 20px;
}

.project-tags span {
  padding: 8px 14px;

  background: rgba(200, 161, 74, 0.06);

  border: 1px solid rgba(200, 161, 74, 0.14);

  border-radius: 30px;

  font-size: 13px;

  color: #c8a14a;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.project-tags span:hover {
  transform: translateY(-3px);

  background: rgba(200, 161, 74, 0.12);

  box-shadow: 0 0 14px rgba(200, 161, 74, 0.12);
}

/* ======================================================
   PROJECT BUTTON
====================================================== */

.project-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 22px;

  border-radius: 12px;

  border: 1px solid rgba(200, 161, 74, 0.25);

  background: rgba(200, 161, 74, 0.04);

  color: #c8a14a;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;

  margin-top: auto;
}

.project-btn:hover {
  background: #c8a14a;

  color: #111111;

  transform: translateY(-3px);

  box-shadow: 0 0 18px rgba(200, 161, 74, 0.2);
}

/* ======================================================
   PROJECT IMAGE OVERLAY
====================================================== */

.project-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.38),
    transparent 45%
  );

  opacity: 0;

  transition: 0.4s ease;

  pointer-events: none;
}

.project-card:hover::after {
  opacity: 1;
}

/* ======================================================
   SWIPER PAGINATION
====================================================== */

.swiper-pagination {
  display: none !important;
}

/* ======================================================
   PREMIUM HOVER EFFECTS
====================================================== */

.service-card,
.skill-group,
.project-card,
.personal-details div,
.message-form {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.skill-group:hover,
.project-card:hover,
.personal-details div:hover,
.message-form:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(200, 161, 74, 0.12);
}

/* ======================================================
   CARD BORDER GLOW
====================================================== */

.service-card,
.skill-group,
.project-card,
.message-form,
.personal-details div {
  border: 1px solid rgba(255, 255, 255, 0.04);

  position: relative;
}

.service-card::before,
.skill-group::before,
.project-card::before,
.message-form::before,
.personal-details div::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(200, 161, 74, 0.18),
    transparent 40%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  pointer-events: none;

  opacity: 0;

  transition: 0.3s ease;
}

.service-card:hover::before,
.skill-group:hover::before,
.project-card:hover::before,
.message-form:hover::before,
.personal-details div:hover::before {
  opacity: 1;
}

/* ======================================================
   IMAGE HOVER ZOOM
====================================================== */

.project-card:hover img {
  transform: scale(1.05);
}

/* ======================================================
   REVIEWS / TESTIMONIAL SLIDER
====================================================== */

.reviewSwiper {
  overflow: hidden;
}

.reviewSwiper .swiper-slide {
  height: auto;
}

/* CARD */
.testimonial-card {
  height: 100%;
  background: #242424;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(200, 161, 74, 0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 161, 74, 0.22);
  box-shadow: 0 0 24px rgba(200, 161, 74, 0.08);
}

/* BANNER */
.testimonial-banner {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.testimonial-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent 45%);
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover .testimonial-banner::after {
  opacity: 1;
}

.testimonial-card:hover .testimonial-banner img {
  transform: scale(1.05);
}

/* CLIENT IMAGE */
.testimonial-profile {
  position: absolute;
  top: 130px;
  left: 28px;
  z-index: 2;
}

.testimonial-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #242424;
  background: #1b1b1b;
}

/* CONTENT */
.testimonial-content {
  padding: 62px 28px 28px;
}

.testimonial-content h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 6px;
}

.testimonial-content span {
  display: inline-block;
  color: #c8a14a;
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-content p {
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 15px;
}

.quote-icon {
  margin-top: 18px;
  font-size: 32px;
  color: #c8a14a;
  opacity: 0.85;
}

/* ======================================================
   MESSAGE
====================================================== */
.message-grid {
  padding-left: 40px;
  padding-right: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.message-info h3 {
  font-size: 32px;
  margin-bottom: 22px;
  color: #ffffff;
}

.message-info p {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 28px;
}

.message-table {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message-row {
  display: grid;
  grid-template-columns: 115px 1fr;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.message-label {
  color: #c8a14a;
  font-weight: 700;
  font-size: 15px;
}

.message-value {
  color: #e0e0e0;
  font-size: 15px;
}

/* CONTACT ME ICONS */
.message-contact-title {
  color: #c8a14a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 28px;
  margin-bottom: 16px;
}

.message-contact-social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 12px;
  justify-content: start;
  align-items: center;
}

.message-contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 1px solid rgba(200, 161, 74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.message-contact-social a:hover {
  transform: translateY(-3px);
  border-color: #c8a14a;
  box-shadow: 0 0 14px rgba(200, 161, 74, 0.18);
}

.message-contact-social img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* FORM */
.message-form {
  background: #242424;
  padding: 30px;
  border-radius: 24px;
}

.message-form input,
.message-form textarea {
  width: 100%;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 15px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #ffffff;
  outline: none;
  transition: 0.3s ease;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: rgba(200, 161, 74, 0.5);
  box-shadow:
    0 0 0 3px rgba(200, 161, 74, 0.08),
    0 0 18px rgba(200, 161, 74, 0.12);
  background: #202020;
}

.message-form textarea {
  min-height: 150px;
  resize: none;
}

.message-form button {
  width: 100%;
  background: #c8a14a;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.message-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(200, 161, 74, 0.25);
}

/* ======================================================
   INPUT FOCUS EFFECT
====================================================== */

.message-form input,
.message-form textarea {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: rgba(200, 161, 74, 0.5);

  box-shadow:
    0 0 0 3px rgba(200, 161, 74, 0.08),
    0 0 18px rgba(200, 161, 74, 0.12);

  background: #202020;
}
/* ======================================================
   FOOTER
====================================================== */
.footer {
  padding: 40px 20px 24px;
  text-align: center;
  background: #161616;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-follow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-line {
  width: 60px;
  height: 2px;
  background: #c8a14a;
  position: relative;
}

.footer-line::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8a14a;
}

.footer-follow {
  font-size: 23px;
  font-weight: 700;
  color: #c8a14a;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-social a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  border-color: #c8a14a;
  box-shadow: 0 0 18px rgba(200, 161, 74, 0.2);
}

.footer-social img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer p {
  font-size: 14px;
  color: #d8d8d8;
  font-weight: 400;
  line-height: 1.6;
}
