:root {
  --wine: #8a0041;
  --deep: #4b1420;
  --dark: #14070c;
  --cream: #fff8f4;
  --muted: #736169;
  --white: #fff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(75, 20, 32, 0.16);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 0, 65, 0.13), transparent 64%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 18px 0;
  transition: 0.35s;
}

.site-header.scrolled {
  background: rgba(255, 248, 244, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(20, 7, 12, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 100px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 700;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta,
.btn {
  border-radius: 999px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.35s;
  border: 1px solid transparent;
}

.nav-cta,
.btn.primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(138, 0, 65, 0.26);
}

.nav-cta:hover,
.btn.primary:hover {
  transform: translateY(-4px);
  background: var(--deep);
  box-shadow: 0 20px 45px rgba(138, 0, 65, 0.35);
}

.btn.ghost {
  border-color: rgba(138, 0, 65, 0.22);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.5);
}

.btn.ghost:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 10px;
  background: var(--wine);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 20px 45px rgba(80, 0, 35, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  color: #7b0038;
  border-radius: 12px;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: rgba(123, 0, 56, 0.08);
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 135px 0 70px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(138, 0, 65, 0.18), transparent 30%),
    radial-gradient(circle at 12% 70%, rgba(75, 20, 32, 0.12), transparent 34%);
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  color: var(--wine);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero h1 span {
  color: var(--wine);
}

.hero p,
.section-copy p,
.section-head p,
.glass-panel p,
.step p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}

.hero-content > p {
  max-width: 650px;
  margin: 24px 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(138, 0, 65, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  color: var(--wine);
}

.hero-stats small {
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.logo-card {
  background: linear-gradient(145deg, #fff, rgba(255, 255, 255, 0.46));
  border: 1px solid rgba(138, 0, 65, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 35px;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.logo-card img {
  width: min(360px, 88%);
  filter: drop-shadow(0 20px 30px rgba(138, 0, 65, 0.15));
}

.float-card {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-15px);
  }
}

/* Carousel */
.carousel {
  margin-top: -75px;
  margin-left: 40px;
  width: min(410px, 88%);
  background: rgba(75, 20, 32, 0.94);
  color: var(--white);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 22px 55px rgba(75, 20, 32, 0.32);
  backdrop-filter: blur(10px);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fadeUp 0.65s ease;
}

.slide span {
  color: #f6bdd4;
  font-weight: 900;
}

.slide h3 {
  font-size: 26px;
  margin: 8px 0;
}

.slide p {
  color: #f9dbe8;
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.carousel button {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.carousel button:hover {
  background: var(--wine);
  transform: scale(1.08);
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.dot.active {
  background: white;
}

/* Sections */
.section {
  padding: 100px 0;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.why-card h2 {
  font-size: clamp(34px, 4vw, 40px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.glass-panel,
.contact-form,
.why-card {
  background: var(--glass);
  border: 1px solid rgba(138, 0, 65, 0.1);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(18px);
}

.glass-panel h3 {
  font-size: 30px;
  color: var(--wine);
  margin-bottom: 14px;
}

.glass-panel strong {
  display: block;
  margin-top: 20px;
  font-size: 30px;
  color: var(--deep);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  display: block;
  background: white;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(138, 0, 65, 0.08);
  box-shadow: 0 16px 45px rgba(75, 20, 32, 0.08);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.service-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-link:hover {
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(138, 0, 65, 0.08));
  transition: 0.35s;
}

/* .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(75, 20, 32, 0.16);
}

.service-card:hover::before {
  height: 100%;
} */
.service-card:hover {
  transform: translateY(-8px);
  background: var(--deep);
  color: white;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover span {
  color: #ffd9e8;
}

.service-card:hover::before {
  display: none;
}
.service-card span {
  color: var(--wine);
  font-size: 28px;
  position: relative;
}

.service-card h3 {
  font-size: 20px;
  margin: 18px 0 14px;
  position: relative;
}

.service-card p {
  font-weight: 900;
  color: var(--wine);
  font-size: 22px;
  position: relative;
}

/* Process */
.process {
  background: linear-gradient(
    135deg,
    rgba(138, 0, 65, 0.07),
    rgba(255, 255, 255, 0.3)
  );
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  background: var(--white);
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(138, 0, 65, 0.09);
  transition: 0.35s;
}

.step:hover {
  transform: translateY(-8px);
  background: var(--deep);
  color: white;
}

.step:hover p,
.step:hover b {
  color: #ffd9e8;
}

.step b {
  color: var(--wine);
  font-size: 30px;
}

.step h3 {
  margin: 18px 0 12px;
}

/* Why */
.why-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, var(--deep), var(--wine));
  color: white;
}

.why-card .section-tag {
  color: #ffd9e8;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.why-list p {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px;
  border-radius: 18px;
  font-weight: 800;
}

/* Contact */
.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-info a {
  font-weight: 900;
  color: var(--wine);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(138, 0, 65, 0.13);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  background: white;
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(138, 0, 65, 0.08);
}

textarea {
  resize: vertical;
}

.form-msg {
  color: var(--wine);
  font-weight: 800;
}

/* Footer */
.footer {
  padding: 28px 0;
  background: var(--dark);
  color: white;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer img {
  width: 120px;
  filter: brightness(0) invert(1);
}

/* Logo Page */
.logo-page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  background:
    radial-gradient(
      circle at top right,
      rgba(123, 0, 56, 0.25),
      transparent 35%
    ),
    linear-gradient(135deg, #fff7fb, #ffffff);
  text-align: center;
}

.logo-page-hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  color: #7b0038;
  font-weight: 900;
  margin: 20px 0;
}

.logo-page-hero p {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 20px;
  color: #5f4b55;
}

.logo-showcase {
  padding: 100px 0;
  overflow: hidden;
}

.logo-marquee {
  margin-top: 50px;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.logo-track {
  display: flex;
  gap: 35px;
  width: max-content;
  animation: moveLeft 25s linear infinite;
  margin-bottom: 20px;
}

.logo-track img {
  width: 210px;
  /* height: 150px; */
  object-fit: contain;
  background: #fff;
  /* padding: 25px; */
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(123, 0, 56, 0.12);
}

@keyframes moveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-track:hover {
  animation-play-state: paused;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.15s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 82px;
    background: white;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 5px 0;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .why-card {
    grid-template-columns: 1fr;
  }

  /*.hero {*/
  /*  padding-top: 120px;*/
  /*}*/

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel {
    margin-left: 0;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .brand img {
    width: 118px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-stats,
  .service-grid,
  .timeline,
  .why-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .logo-card {
    min-height: 300px;
    padding: 22px;
  }

  .carousel {
    margin-top: 18px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .glass-panel,
  .contact-form,
  .why-card {
    padding: 26px;
  }

  .hero p,
  .section-copy p,
  .section-head p {
    font-size: 16px;
  }

  .logo-track img {
    width: 160px;
    height: 120px;
  }
}
.logo-page-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background:
    radial-gradient(
      circle at top right,
      rgba(138, 0, 65, 0.15),
      transparent 40%
    ),
    linear-gradient(135deg, #fff7fb, #ffffff);
}

.logo-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.logo-hero-text h1 {
  font-size: clamp(52px, 8vw, 65px);
  line-height: 1.2;
  margin: 20px 0;
  color: var(--deep);
}

.logo-hero-text p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 35px;
}

.logo-hero-image img {
  width: 100%;
  max-width: 550px;
  display: block;
  margin: auto;
  animation: float 5s ease-in-out infinite;
}

@media (max-width: 980px) {
  .logo-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-hero-text p {
    margin: 0 auto 35px;
  }

  .logo-page-hero {
    padding: 140px 0 80px;
  }
}

.logo-hero-image img {
  width: 100%;
  max-width: 550px;
  display: block;
  margin: auto;
  border-radius: 30px;
  animation: float 5s ease-in-out infinite;

  /* 3D Effect */
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);

  /* Multi-layer Shadow */
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.12),
    0 30px 60px rgba(138, 0, 65, 0.18),
    0 50px 90px rgba(75, 20, 32, 0.12);

  transition: all 0.4s ease;
}

.logo-hero-image img:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-10px);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.15),
    0 40px 80px rgba(138, 0, 65, 0.22),
    0 60px 100px rgba(75, 20, 32, 0.15);
}

/* social media page */
.social-showcase {
  padding: 100px 0;
}

.social-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.social-post-grid img {
  width: 100%;
  /* border-radius: 30px; */
  transition: 0.4s ease;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 25px 50px rgba(138, 0, 65, 0.12);
}

.social-post-grid img:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 40px 80px rgba(138, 0, 65, 0.18);
}
@media (max-width: 980px) {
  .social-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .social-post-grid {
    grid-template-columns: 1fr;
  }
}

/* brochure */
.brochure-showcase {
  padding: 100px 0;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.brochure-card {
  /* background: #fff; */
  /* padding: 18px; */
  border-radius: 32px;
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.08),
    0 30px 70px rgba(138, 0, 65, 0.14);
  transition: 0.4s ease;
}

.brochure-card img {
  width: 100%;
  display: block;
  border-radius: 32px;
  background-color: #e8e9eb;
}

.brochure-card:hover {
  transform: translateY(-12px) rotateX(3deg);
}

@media (max-width: 768px) {
  .brochure-grid {
    grid-template-columns: 1fr;
  }
}

/* packing */

.packaging-showcase {
  padding: 100px 0;
}

.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 950px;
  margin: auto;
}

.packaging-card {
  /* background: #fff; */
  /* padding: 18px; */
  border-radius: 34px;
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.08),
    0 30px 70px rgba(138, 0, 65, 0.14);
  transition: 0.4s ease;
}

.packaging-card img {
  width: 100%;
  display: block;
  border-radius: 26px;
  background-color: #e8e9eb;
}

.packaging-card:hover {
  transform: translateY(-12px) scale(1.02);
}

@media (max-width: 768px) {
  .packaging-grid {
    grid-template-columns: 1fr;
  }
}

/* flyer */
.flyer-showcase {
  padding: 100px 0;
}

.flyer-grid {
  column-count: 3;
  column-gap: 30px;
}

.flyer-card {
  break-inside: avoid;
  margin-bottom: 30px;
  /* background: #fff; */
  /* padding: 16px; */
  border-radius: 30px;
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.08),
    0 30px 70px rgba(138, 0, 65, 0.14);
  transition: 0.4s ease;
}

.flyer-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  background-color: #e8e9eb;
}

.flyer-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 40px 80px rgba(138, 0, 65, 0.18);
}
@media (max-width: 980px) {
  .flyer-grid {
    column-count: 2;
  }
}

@media (max-width: 620px) {
  .flyer-grid {
    column-count: 1;
  }
}

/* presentation */
.presentation-showcase {
  padding: 100px 0;
}

.presentation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.presentation-card {
  transition: 0.4s ease;
}

.presentation-card:hover {
  transform: translateY(-12px);
}

.laptop-frame {
  /* background: #1f1f1f; */
  border-radius: 28px 28px 12px 12px;
  /* padding: 3px 3px 3px; */
  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.1),
    0 35px 70px rgba(138, 0, 65, 0.14);
  position: relative;
}

.laptop-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 120px;
  height: 12px;
  /* background: #bfbfbf; */
  border-radius: 0 0 20px 20px;
}

.laptop-frame img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .presentation-grid {
    grid-template-columns: 1fr;
  }
}
/* wapp */
/* Floating Buttons */
.floating-btn {
  position: fixed;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn {
  bottom: 25px;
  background: #25d366;
}

.call-btn {
  bottom: 100px;
  background: var(--wine);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@media (max-width: 768px) {
  .floating-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
    right: 15px;
  }

  .whatsapp-btn {
    bottom: 20px;
  }

  .call-btn {
    bottom: 90px;
  }
}
/* fb insta */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 18px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;
  font-size: 18px;

  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: var(--wine);
  border-color: var(--wine);
  transform: translateY(-5px);

  box-shadow:
    0 12px 30px rgba(123, 0, 56, 0.25),
    0 0 0 8px rgba(123, 0, 56, 0.08);
}

.footer-social a i {
  transition: transform 0.35s ease;
}

.footer-social a:hover i {
  transform: scale(1.15);
}

/*form css*/
.form-msg{
    margin-top:15px;
    font-size:15px;
    font-weight:600;
    text-align:center;
}

.form-msg.success{
    color:#22c55e;
}

.form-msg.error{
    color:#ef4444;
}

.submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.contact-form input:required,
.contact-form select:required,
.contact-form textarea:required{
    border:1px solid rgba(255,255,255,.12);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--wine);
    box-shadow:0 0 0 4px rgba(123,0,56,.12);
}

.form-msg{
    margin-top:15px;
    text-align:center;
    font-weight:600;
    font-size:15px;
}

.submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}