@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

/* CSS RESET */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  min-width: 300px;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* ROOT STYLING */

:root {
  /* Typography */
  --font-heading: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Primary Colors - Deep Purple-Navy (Modern & Techy) */
  --color-primary: hsl(229, 41%, 5%); /* --surface-0: deepest background */
  --color-primary-light: hsl(229, 25%, 12%); /* --surface-1 */
  --color-primary-dark: hsl(229, 50%, 3%); /* darker than surface-0 */

  --color-accent: hsl(262, 84%, 52%); /* --accent: vivid purple */
  --color-accent-light: #cd7aee; /* --accent2-color: soft orchid */
  --color-accent-dark: hsl(262, 84%, 38%); /* darker accent purple */

  /* Secondary Colors */
  --color-secondary: #667eea; /* --secondary-color: periwinkle-violet */
  --color-secondary-light: hsl(234, 75%, 75%); /* lighter periwinkle */

  /* Neutral Colors */
  --color-white: #fefdfe; /* --accent1-color */
  --color-light: hsl(234, 26%, 16%); /* --surface-2 */
  --color-gray-100: hsl(229, 22%, 22%);
  --color-gray-200: hsl(229, 22%, 19%); /* border base */
  --color-gray-300: hsl(229, 18%, 30%);
  --color-gray-400: hsl(229, 12%, 40%);
  --color-gray-500: hsl(229, 12%, 50%);
  --color-gray-600: hsl(229, 12%, 66%); /* --text-2 */
  --color-gray-700: hsl(229, 12%, 80%);
  --color-black: #000000; /* --primary-color */

  /* Text Colors */
  --text-primary: hsl(229, 12%, 100%); /* --text-1: bright white */
  --text-secondary: hsl(229, 12%, 66%); /* --text-2: muted lavender-gray */
  --text-muted: hsl(229, 12%, 50%);
  --text-light: hsl(229, 12%, 40%);
  --text-white: #fefdfe; /* --accent1-color */
  --text-accent: #cd7aee; /* --accent2-color: orchid */

  /* Background Colors */
  --bg-primary: hsl(229, 41%, 5%); /* --surface-0 */
  --bg-secondary: hsla(230, 48%, 15%, 0.586); /* --surface-1 */
  --bg-dark: #000000; /* --primary-color */
  --bg-accent: hsl(262, 84%, 52%); /* --accent */
  --bg-hover: hsl(234, 26%, 16%); /* --surface-2 */

  /* Border Colors */
  --border-light: hsl(229, 22%, 19%); /* --border */
  --border-medium: hsl(229, 22%, 24%);
  --border-dark: hsl(229, 22%, 30%);
  --border-accent: hsl(262, 84%, 52%); /* --accent */
  --border-primary: #667eea; /* --secondary-color */

  /* Shadow Colors */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.7);
  --shadow-accent: 0 4px 20px hsla(262, 84%, 52%, 0.35);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.3);

  /* Button Colors */
  --btn-primary-bg: hsl(262, 84%, 52%); /* --accent */
  --btn-primary-text: #fefdfe;
  --btn-primary-hover: #cd7aee; /* --accent2-color */
  --btn-primary-active: hsl(262, 84%, 38%);
  --btn-primary-shadow: 0 4px 16px hsla(262, 84%, 52%, 0.45);

  --btn-accent-bg: #667eea; /* --secondary-color */
  --btn-accent-text: #fefdfe;
  --btn-accent-hover: hsl(234, 75%, 75%);
  --btn-accent-active: hsl(234, 60%, 48%);
  --btn-accent-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);

  --btn-secondary-bg: transparent;
  --btn-secondary-text: hsl(229, 12%, 100%); /* --text-1 */
  --btn-secondary-border: #667eea;
  --btn-secondary-hover-bg: #667eea;
  --btn-secondary-hover-text: #fefdfe;

  --btn-outline-bg: transparent;
  --btn-outline-text: #cd7aee; /* --accent2-color */
  --btn-outline-border: #cd7aee;
  --btn-outline-hover-bg: #cd7aee;
  --btn-outline-hover-text: #fefdfe;

  /* Highlights & Accents */
  --highlight-primary: hsl(262, 84%, 52%); /* --accent */
  --highlight-secondary: #667eea; /* --secondary-color */
  --accent-underline: #cd7aee; /* --accent2-color */
  --selection-bg: hsl(262, 84%, 52%);
  --selection-text: #fefdfe;

  /* Required / Validation */
  --required: hsl(321, 32%, 56%); /* unchanged — pink-magenta */

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* Typography Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-weight: var(--font-weight-bold);
  font-size: 3rem;
}

h2 {
  font-weight: var(--font-weight-semibold);
  font-size: 2.5rem;
}

h3 {
  font-weight: var(--font-weight-semibold);
  font-size: 2rem;
}

p,
body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-secondary);
}

body {
  background-color: var(--color-light);
}

/* Text Selection */
::selection {
  background-color: var(--selection-bg);
  color: var(--selection-text);
}

/* Button Styles */
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--btn-primary-shadow);
  text-align: left;
}

.btn-primary svg {
  height: 21px;
  vertical-align: middle;
  padding-left: 5px;
  transition: all var(--transition-base);
}

.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover svg {
  transform: translateX(5px);
}

.btn-primary:active {
  background-color: var(--btn-primary-active);
  transform: translateY(0);
}

.btn-accent {
  background-color: var(--btn-accent-bg);
  color: var(--btn-accent-text);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--btn-accent-shadow);
}

.btn-accent:hover {
  background-color: var(--btn-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border: 2px solid var(--btn-secondary-border);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background-color: var(--btn-secondary-hover-bg);
  color: var(--btn-secondary-hover-text);
}

.btn-outline {
  background-color: var(--btn-outline-bg);
  color: var(--btn-outline-text);
  border: 2px solid var(--btn-outline-border);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-outline:hover {
  background-color: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-text);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ====================================== BACKGROUND ANIMATIONS  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--primary-color);
  overflow: hidden;
  z-index: -1;
}

.ball {
  position: absolute;
  width: 20vmin;
  height: 20vmin;
  border-radius: 50%;
  backface-visibility: hidden;
  animation: move linear infinite;
}

.ball:nth-child(odd) {
  color: #006d5b;
}

.ball:nth-child(even) {
  color: #0b70a6;
}

/* Using a custom attribute for variability */
.ball:nth-child(1) {
  top: 77%;
  left: 88%;
  animation-duration: 40s;
  animation-delay: -3s;
  transform-origin: 16vw -2vh;
  box-shadow: 40vmin 0 5.703076368487546vmin currentColor;
}
.ball:nth-child(2) {
  top: 42%;
  left: 2%;
  animation-duration: 53s;
  animation-delay: -29s;
  transform-origin: -19vw 21vh;
  box-shadow: -40vmin 0 5.17594621519026vmin currentColor;
}
.ball:nth-child(3) {
  top: 28%;
  left: 18%;
  animation-duration: 49s;
  animation-delay: -8s;
  transform-origin: -22vw 3vh;
  box-shadow: 40vmin 0 5.248179047256236vmin currentColor;
}
.ball:nth-child(4) {
  top: 50%;
  left: 79%;
  animation-duration: 26s;
  animation-delay: -21s;
  transform-origin: -17vw -6vh;
  box-shadow: 40vmin 0 5.279749632220298vmin currentColor;
}
.ball:nth-child(5) {
  top: 46%;
  left: 15%;
  animation-duration: 36s;
  animation-delay: -40s;
  transform-origin: 4vw 0vh;
  box-shadow: -40vmin 0 5.964309466052033vmin currentColor;
}
.ball:nth-child(6) {
  top: 77%;
  left: 16%;
  animation-duration: 31s;
  animation-delay: -10s;
  transform-origin: 18vw 4vh;
  box-shadow: 40vmin 0 5.178483653434181vmin currentColor;
}
.ball:nth-child(7) {
  top: 22%;
  left: 17%;
  animation-duration: 55s;
  animation-delay: -6s;
  transform-origin: 1vw -23vh;
  box-shadow: -40vmin 0 5.703026794398318vmin currentColor;
}
.ball:nth-child(8) {
  top: 41%;
  left: 47%;
  animation-duration: 43s;
  animation-delay: -28s;
  transform-origin: 25vw -3vh;
  box-shadow: 40vmin 0 5.196265905749415vmin currentColor;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== HEADER STYLES  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Small devices (mobile phones, 300px and up) */
@media (min-width: 300px) {
  /* body {background-color: green;} */

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.432);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transition:
      all 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
  }

  .header.scrolled {
    background: rgba(0, 0, 0, 0.316);
    height: 70px;
    border-bottom: 1px solid var(--border-accent);
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .logo-container:hover {
    transform: translateY(-2px);
  }

  .logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-text {
    color: white;
    font-size: 20px;
    font-weight: 600;
  }

  .main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .menu-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
  }

  .menu-item:hover {
    color: white;
    transform: translateY(-2px) scale(1.05);
  }

  .menu-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.2s ease;
  }

  .menu-item:hover::after {
    width: 100%;
  }

  .menu-item.active {
    color: white;
  }

  .menu-item.active::after {
    left: 40%;
    width: 30%;
  }

  .menu-item.external::before {
    content: "↗";
    margin-right: 5px;
    font-size: 12px;
    opacity: 0.7;
  }

  /* Mobile menu toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .logo-text {
    font-size: 20px;
  }
}

/* Specific styling for the "My Account" menu item */
.menu-item[href="https://portal.sylphcode.co.za"] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  padding: 4px 16px; /* Matches existing .menu-item padding */
  font-size: 16px; /* Matches existing .menu-item font-size */
  font-weight: 500; /* Matches existing .menu-item font-weight */
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
  z-index: 2;
}

/* Hover effect for My Account */
.menu-item[href="https://portal.sylphcode.co.za"]:hover {
  background: linear-gradient(
    135deg,
    #7f9cf5 0%,
    #8b5cf6 100%
  ); /* Slightly lighter gradient */
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5); /* Slightly stronger shadow */
}

/* Active state */
.menu-item[href="https://portal.sylphcode.co.za"].active {
  background: linear-gradient(
    135deg,
    #764ba2 0%,
    #667eea 100%
  ); /* Reverse gradient for active */
}

/* Remove the underline effect for My Account */
.menu-item[href="https://portal.sylphcode.co.za"]::after {
  content: none; /* Disable the default underline effect */
}

/* Mobile menu adjustments */
@media (max-width: 768px) {
  .menu-item[href="https://portal.sylphcode.co.za"] {
    width: fit-content; /* Prevent stretching in mobile menu */
    margin: 0 auto; /* Center in mobile menu */
    padding: 10px 20px; /* Slightly larger for touch targets */
    font-size: 16px; /* Consistent font size */
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== HOME HERO SECTION  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Small devices (mobile phones, 300px and up) */
@media (min-width: 300px) {
  .hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    gap: 30px;
    width: 80%;
    margin: 0 auto;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50vw);
    width: 98vw;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(
      at top left,
      #667eea 0%,
      #764ba2b6 8%,
      transparent 38%
    );
    pointer-events: none;
  }

  .hero .container {
    grid-row: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -18vw;
  }

  .container h1 {
    width: 100%;
    font-size: 2rem;
  }
  .container p {
    width: 100%;
  }

  .container .btn-primary {
    margin-top: 10%;
    width: 39%;
    min-width: 150px;
  }

  .hero-img-wrapper {
    grid-row: 2/3;
    display: flex;
    justify-items: center;
    align-items: center;
    height: 60vh;
  }

  .hero-img {
    width: 110%;
    display: block;
  }

  .hero-img-animated {
    width: 110%;
    filter: invert(100%);
    transform: translateY(-37px);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container h1 {
    width: 100%;
    font-size: 3rem;
  }

  .hero-img-wrapper {
    grid-row: 2/3;
    display: flex;
    justify-items: center;
    align-items: center;
    height: 80vh;
  }

  .hero-img {
    width: 90%;
    max-width: 650px;
    display: block;
  }

  .hero-img-animated {
    width: 90%;
    max-width: 650px;
    filter: invert(100%);
    transform: translateY(-48px);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr auto 1fr;
    height: 100vh;
  }

  .hero .container {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: 30px;
    padding-left: 10%;
  }

  .container h1 {
    padding-top: 10px;
  }

  .container p {
    width: 55%;
  }

  .hero-img-wrapper {
    grid-column: 2/3;
    grid-row: 2/3;
    height: 70vh;
  }

  .hero-img {
    width: 600px;
    margin-top: 20vh;
  }

  .hero-img-animated {
    width: 600px;
    margin-top: 20vh;
    transform: translateY(-56px);
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== HOME ABOUT SECTION  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Small devices (mobile phones, 300px and up) */
@media (min-width: 300px) {
  #home-about {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 90px auto auto 1fr;
    gap: 30px;
    width: 80%;
    margin: 0 auto;
  }

  #home-about::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50vw);
    width: 98vw;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(
      at top right,
      transparent 83%,
      #764ba2b6 98%
    );
    pointer-events: none;
  }

  #home-about .container {
    grid-row: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 2vw;
  }

  #home-about .container h2 {
    width: 100%;
    font-size: 2rem;
  }

  #home-about .container p {
    width: 100%;
  }

  #home-about .btn-primary {
    margin-top: 10%;
    width: 39%;
  }

  #home-about img {
    grid-row: 2/3;
    width: 100%;
    max-width: 525px;
    display: block;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #home-about {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto 1fr;
    height: 80vh;
  }

  #home-about .container {
    grid-column: 2/3;
    grid-row: 2/3;
    margin-top: 50px;
    padding-left: 10%;
    min-height: unset;
  }

  #home-about .container h2 {
    padding-top: 20px;
  }

  #home-about img {
    grid-column: 1/2;
    grid-row: 2/3;
    height: 70vh;
    margin-top: -10%;
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== HOME SERVICES SECTION  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Small devices (mobile phones, 300px and up) */
@media (min-width: 300px) {
  /* body {background-color: green;} */
  #home-services {
    position: relative;
    width: 80%;
    margin: 0 auto;
  }

  #home-services::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50vw);
    width: 98vw;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(
      at top left,
      #764ba2b6 0%,
      transparent 29%
    );
    pointer-events: none;
  }

  #home-services h2 {
    text-align: center;
    padding-top: 10vh;
  }

  .home-services-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 30px;
  }

  .service-card {
    width: 100%;
    height: auto;
    background-color: var(--bg-secondary);
    padding: 20px 0px 20px 10px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    transition: all ease-in-out 250ms;
    container-type: inline-size;
  }

  .service-card img {
    width: 15vw;
    margin: 0 auto;
    padding: 20px 0;
  }

  .service-card h3 {
    margin-bottom: 5px;
    padding: 0;
    font-size: 9cqi;
  }

  .service-card p {
    display: none;
  }

  .view-more-link {
    margin-top: auto;
    width: 100%;
    font-size: 6cqi;
    color: var(--color-gray-600);
  }
  .arrow {
    display: inline-block;
    transition: transform 350ms ease-in-out;
  }

  .service-card:hover {
    transform: scale(1.03);
    z-index: 1;
    cursor: pointer;
    outline: 1px solid #667eea;
    box-shadow:
      inset 0 0 30px rgba(102, 126, 234, 0.25),
      0 0 20px rgba(102, 126, 234, 0.15);
    background: radial-gradient(
      ellipse at bottom center,
      rgba(102, 126, 234, 0.3) 0%,
      var(--bg-secondary) 60%
    );
  }

  .service-card:hover .view-more-link {
    color: var(--color-white);
    transform: scale(1.03) translateX(2px);
  }

  .service-card:hover .arrow {
    transform: translateX(15px);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  /* body {background-color: rgb(71, 17, 195);} */
  .home-services-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 30px;
  }

  .service-card:hover {
    background: radial-gradient(
      ellipse 80% 45% at bottom center,
      rgba(102, 126, 234, 0.3) 0%,
      var(--bg-secondary) 100%
    );
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* body {background-color: rgb(242, 118, 192);} */
  .service-card img {
    width: 11vw;
    margin: 0 auto;
    padding: 20px 0;
  }

  .service-card h3 {
    margin-bottom: 5px;
    padding: 0;
    font-size: 11cqi;
  }

  .service-card p {
    display: block;
    padding-top: 10px;
    text-align: left;
    font-size: 6cqi;
    width: 100%;
    margin-bottom: 10px;
  }

  .home-services-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-bottom: 30px;
  }

  .service-card {
    width: 90%;
    height: auto;
    background-color: var(--bg-secondary);
    padding: 15px;
  }
}

/* #home-services {
  position: relative;
  width: 80%;
  margin: 0 auto;
  min-height: 180vh;
}

#home-services::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50vw);
  width: 98vw;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(at top left, #764ba2b6 0%, transparent 29%);
  pointer-events: none;
}

#home-services h2 {
  text-align: center;
  padding-top: 10vh;
}

.home-services-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.service-card {
  width: 246px;
  height: 490px;
  background-color: var(--bg-secondary);
  padding: 20px 20px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  transition: all ease-in-out 250ms;
}

.service-card img {
  width: 180px;
  margin: 0 auto;
  padding: 20px 0;
}

.service-card h3 {
  margin-bottom: 5px;
}

.service-card p {
  padding-top: 10px;
  text-align: justify;
  font-size: 0.95rem;
}

.view-more-link {
  margin-top: auto;
  width: 100%;
  color: var(--color-gray-600);
}
.arrow {
  display: inline-block;
  transition: transform 500ms ease-in-out;
}

.service-card:hover {
  transform: scale(1.08);
  z-index: 1;
  cursor: pointer;
  background-color: var(--bg-hover);
  box-shadow: var(--shadow-lg);
}

.service-card:hover .view-more-link {
  color: var(--color-white);
  transform: scale(1.03) translateX(3px);
}

.service-card:hover .arrow {
  transform: translateX(15px);
} */

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== HOME SHOP SECTION  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* Small devices (mobile phones, 300px and up) */
@media (min-width: 300px) {
  /* body {background-color: green;} */
}

#home-shop {
  position: relative;
  width: 90%;
  margin: 0 auto;
  min-height: 100vh;
}

#home-shop h2 {
  text-align: center;
  padding-top: 10vh;
  margin-bottom: 3px;
}

#home-shop p {
  text-align: center;
  margin: 0 0 5vh 0;
}

.home-shop-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 5vh;
}

.shop-card {
  background-color: var(--bg-secondary);
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  transition: all ease-in-out 250ms;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.shop-card-info {
  display: flex;
  flex-direction: column;
  width: 60%;
  container-type: inline-size;
}

.shop-card-info-text {
  font-size: 7cqi;
  color: var(--color-gray-600);
  width: 100%;
}

.shop-card-info-text span {
  vertical-align: middle;
}

.shop-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #81f8ec;
  border-radius: 50%;
  border: 1px solid black;
  vertical-align: middle;
}
.shop-circle.circle-pink {
  background-color: #f755f4;
}
.shop-circle.circle-purple {
  background-color: #764ba2;
}
.shop-circle.circle-blue {
  background-color: #667eea;
}
.shop-circle.circle-green {
  background-color: #30fc4e;
}
.shop-circle.circle-cyan {
  background-color: #00d4ff;
}

#home-shop .shop-card-info p {
  font-family: "Bebas Neue", sans-serif;
  text-align: left;
  font-size: 25cqi;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-top: 15px;
}

/* ================= PREMIUM SHIMMER TEXT ================= */

.shop-card:hover .shop-card-info p .shimmer-text {
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(200, 200, 200, 0.75) 25%,
    rgba(255, 255, 255, 1) 50%,
    rgba(200, 200, 200, 0.75) 75%,
    rgba(255, 255, 255, 0.95) 100%
  );
  background-size: 300% 100%;
  background-position: -150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: premiumShimmer 20s linear infinite;
  will-change: background-position;
}

/* ================= SMOOTH SHIMMER ANIMATION ================= */

@keyframes premiumShimmer {
  0% {
    background-position: -150% center;
  }
  100% {
    background-position: 150% center;
  }
}

.view-shop-link {
  display: none;
}

.shop-card img {
  height: 15vw;
  align-self: center;
  z-index: -1;
}

.shop-card:nth-child(2) {
  grid-column: 1/2;
  grid-row: 1/2;
}

.shop-card:nth-child(2):hover {
  border: 1px solid #764ba2;
  box-shadow:
    inset 0 0 30px rgba(118, 75, 162, 0.25),
    0 0 20px rgba(118, 75, 162, 0.15);
  background: radial-gradient(
    ellipse at bottom center,
    rgba(102, 126, 234, 0.3) 0%,
    var(--bg-secondary) 60%
  );
}

.shop-card:nth-child(3) {
  grid-column: 2/3;
  grid-row: 1/2;
}

.shop-card:nth-child(3):hover {
  border: 1px solid #667eea;
  box-shadow:
    inset 0 0 30px rgba(102, 126, 234, 0.25),
    0 0 20px rgba(102, 126, 234, 0.15);
  background: radial-gradient(
    ellipse at bottom center,
    rgba(102, 126, 234, 0.3) 0%,
    var(--bg-secondary) 60%
  );
}

.shop-card:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
}

.shop-card:nth-child(4):hover {
  border: 1px solid #30fc4e;
  box-shadow:
    inset 0 0 30px rgba(57, 137, 33, 0.25),
    0 0 20px rgba(83, 188, 18, 0.15);
  background: radial-gradient(
    ellipse at bottom center,
    rgba(28, 183, 35, 0.3) 0%,
    var(--bg-secondary) 60%
  );
}

.shop-card:nth-child(5) {
  grid-column: 2/3;
  grid-row: 3/4;
}

.shop-card:nth-child(5):hover {
  border: 1px solid #00d4ff;
  box-shadow:
    inset 0 0 30px rgba(0, 212, 255, 0.25),
    0 0 20px rgba(0, 212, 255, 0.15);
  background: radial-gradient(
    ellipse at bottom center,
    rgba(0, 212, 255, 0.3) 0%,
    var(--bg-secondary) 60%
  );
}

.main-shop-card {
  grid-column: 1/2;
  grid-row: 2/4;
  background-color: var(--bg-secondary);
  padding: 20px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  transition: all ease-in-out 250ms;
  border: 1px solid transparent;
  container-type: inline-size;
}

.main-shop-card:hover {
  border: 1px solid #f755f4;
  box-shadow:
    inset 0 0 30px rgba(204, 85, 247, 0.25),
    0 0 20px rgba(168, 85, 247, 0.15);
  background: radial-gradient(
    ellipse 80% 45% at bottom center,
    rgba(247, 85, 247, 0.25) 0%,
    var(--bg-secondary) 100%
  );
}

.main-shop-card img {
  width: 80%;
  z-index: -1;
}

.main-shop-card-info-text {
  font-size: 5cqi;
  color: var(--color-gray-600);
  width: 100%;
}

#home-shop .main-shop-card p {
  font-family: "Bebas Neue", sans-serif;
  text-align: left;
  font-size: 25cqi;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-top: 15px;
}

.main-shop-card:hover p .shimmer-text {
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(200, 200, 200, 0.75) 25%,
    rgba(255, 255, 255, 1) 50%,
    rgba(200, 200, 200, 0.75) 75%,
    rgba(255, 255, 255, 0.95) 100%
  );
  background-size: 300% 100%;
  background-position: -150% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  animation: premiumShimmer 20s linear infinite;
  will-change: background-position;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  /* body {background-color: rgb(71, 17, 195);} */
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* body {background-color: rgb(242, 118, 192);} */

  .home-shop-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 85vh;
  }

  .shop-card-info {
    display: flex;
    flex-direction: column;
    width: 60%;
    container-type: inline-size;
    justify-content: center;
  }

  .shop-card-info-text {
    font-size: 5cqi;
    color: var(--color-gray-600);
    width: 100%;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition-slow);
  }

  #home-shop .shop-card-info p {
    text-align: left;
    font-size: 25cqi;
  }

  .view-shop-link {
    display: block;
    margin-top: auto;
    width: 50%;
    padding: 5px 10px;
    color: var(--color-gray-600);
    border: var(--color-gray-600) solid 1px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    container-type: inline-size;
  }
  .view-shop-text {
    font-size: 13cqi;
  }

  #home-shop .arrow {
    display: inline-block;
    transition: transform 300ms linear;
    font-size: 13cqi;
  }

  /* Base Transitions for all cards */

  .shop-card:hover .shop-card-info-text {
    color: var(--color-white);
    transform: translateY(0px);
    opacity: 1;
  }

  .shop-card .view-shop-link:hover {
    color: var(--color-white);
    transform: translateX(3px);
  }

  .view-shop-link:hover .arrow {
    transform: translateX(5px);
  }

  .shop-card img {
    height: 10vw;
    transition: var(--transition-base);
  }

  .shop-card:hover img {
    transform: scale(1.35) rotate(5deg);
  }

  .shop-card:nth-child(2) {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .shop-card:nth-child(2):hover .view-shop-link {
    border-color: #8857b9;
  }

  .shop-card:nth-child(2) .view-shop-link:hover {
    background: #764ba2 linear-gradient(to right, transparent, #00000070 65%);
  }

  .shop-card:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/2;
  }

  .shop-card:nth-child(3):hover .view-shop-link {
    border-color: #6e88fb;
  }

  .shop-card:nth-child(3) .view-shop-link:hover {
    background: #667eea linear-gradient(to right, transparent, #00000070 65%);
  }

  .shop-card:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/3;
  }

  .shop-card:nth-child(4):hover .view-shop-link {
    border-color: #30fc4e;
  }

  .shop-card:nth-child(4) .view-shop-link:hover {
    background: #1a882b linear-gradient(to right, transparent, #00000070 65%);
  }

  .shop-card:nth-child(5) {
    grid-column: 1/2;
    grid-row: 2/3;
  }

  .shop-card:nth-child(5):hover .view-shop-link {
    border-color: #00d4ff;
  }

  .shop-card:nth-child(5) .view-shop-link:hover {
    background: #00b4d8 linear-gradient(to right, transparent, #00000070 65%);
  }

  .main-shop-card {
    grid-column: 2/3;
    grid-row: 1/3;
    background-color: var(--bg-secondary);
    padding: 20px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    transition: all ease-in-out 250ms;
  }

  .main-shop-card-info-text {
    font-size: 4cqi;
    color: var(--color-gray-600);
    width: 100%;
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition-slow);
  }

  .main-shop-card:hover .main-shop-card-info-text {
    color: var(--color-white);
    transform: translateY(0px);
    opacity: 1;
  }

  .main-shop-card img {
    height: 39vw;
    transition: var(--transition-base);
    margin-top: -20%;
    z-index: -1;
  }

  .main-shop-card:hover img {
    transform: scale(1.25) rotate(5deg) translateX(30px);
  }

  .main-shop-card:hover .view-shop-link {
    border-color: #f755f4;
  }

  .main-shop-card .view-shop-link:hover {
    background: #f755f4 linear-gradient(to right, transparent, #00000070 65%);
    color: var(--color-white);
    transform: translateX(3px);
  }
}
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== CONTACT PAGE - CONTACT SECTION  ============================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Small devices (mobile phones, 300px and up) */
@media (min-width: 300px) {
  /* body {background-color: green;} */
  #contact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    width: 90%;
    margin: 100px auto 30px;
    gap: 30px;
  }

  .contact-heading {
    grid-column: 1/2;
    grid-row: 1/2;
    justify-items: center;
    align-items: center;
  }

  .contact-info {
    margin-top: 15px;
  }

  .contact-info p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
  }

  .contact-icon {
    width: 5%;
    fill: white;
  }

  .contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
  }

  .contact-text {
    flex: 1;
  }

  .contact-text h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
  }

  .contact-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  .social-links {
    margin-top: 40px;
  }

  .social-links h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
  }

  .social-buttons {
    display: flex;
    gap: 15px;
  }

  .social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .social-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
  }

  .social-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
  }

  .contact-form {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.08);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.5;
  }

  .submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
  }

  .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
  }

  input[type="checkbox"] {
    height: 30px;
    width: 30px;
    accent-color: #667eea;
    cursor: pointer;
    border-radius: 4px;
    margin: 0px 0px 0px 5px;
    padding: 0;
    vertical-align: middle;
    appearance: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
  }

  input[type="checkbox"]:checked {
    background: #667eea;
    border-color: #667eea;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2l-4.2-4.2-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .form-group:has(.fine-print) {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .fine-print {
    text-transform: revert;
    line-height: 1.4;
    font-size: 14px;
    width: 80%;
  }

  .fine-print a {
    color: #667eea;
  }

  .submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }

  .loader {
    display: none;
    border: 3px solid var(--accent1-color);
    border-top: 3px solid var(--accent2-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .submit-btn.loading .loader {
    display: block;
  }

  .submit-btn.loading span {
    visibility: hidden;
  }

  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  /* body {background-color: rgb(242, 118, 192);} */
  #contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    width: 90%;
    margin: 100px auto 30px;
    gap: 30px;
  }

  .contact-heading {
    grid-column: 1/3;
    grid-row: 1/2;
    justify-items: center;
    align-items: center;
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== FOOTER SECTION  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

footer {
  min-height: 85vh;
  background-image:
    radial-gradient(at bottom left, #667eea 0%, #764ba2b6 8%, transparent 35%),
    linear-gradient(to bottom, #764ba2b6 0%, transparent 28%);
  display: flex;
  flex-direction: column;
}

#contact-footer {
  width: 80%;
  margin: 0 auto;
  height: 20vh;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

#contact-footer div {
  width: 40%;
}

#contact-footer img {
  display: block;
  min-height: 150px;
  height: 7vw;
}

#footer-info {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.footer-card {
  min-width: 290px;
  width: 30%;
  height: 40vh;
}

.footer-card:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
}

.footer-card:nth-child(1) a {
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.footer-card:nth-child(1) a:hover {
  font-weight: bold;
  color: var(--text-accent);
}

.footer-card:nth-child(2) {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
}

.footer-card:nth-child(2) img {
  position: absolute;
  width: 90%;
  left: -10%;
  top: 10%;
  z-index: -1;
}

.footer-card:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-card:nth-child(3) img {
  width: 40px;
  padding: 4px;
}

.footer-card:nth-child(3) img {
  width: 40px;
  padding: 4px;
  transition: var(--transition-base);
}

.footer-card:nth-child(3) img:hover {
  transform: scale(1.1);
}

.footer-text {
  margin-top: auto;
  text-align: center;
  color: var(--color-white);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ============================================== GENERAL  =====================================================*/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.hidden {
  display: none;
}

strong {
  font-weight: bold;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Small devices (mobile phones, 300px and up) */
/* @media (min-width: 300px) { */
/* body {background-color: green;} */

/* } */

/* Medium devices (tablets, 768px and up) */
/* @media (min-width: 768px) { */
/* body {background-color: rgb(71, 17, 195);} */

/* } */

/* Large devices (desktops, 992px and up) */
/* @media (min-width: 992px) { */
/* body {background-color: rgb(242, 118, 192);} */

/* } */

/* Extra large devices (large desktops, 1200px and up) */
/* @media (min-width: 1200px) {
 body {background-color: rgb(101, 217, 233);}
  
} */

/* Extra extra large devices (larger desktops, 1400px and up) */
/* @media (min-width: 1400px) {
 body {background-color: rgb(144, 111, 221);}
  
} */
