:root {
  --color-bg: #fdfbf7;
  --color-surface: #ffffff;
  --color-gold: #b58c2a;
  --color-gold-hover: #9c7820;
  --color-text: #2a2a2a;
  --color-text-muted: #555555;
  --color-border: rgba(0, 0, 0, 0.1);
  --color-border-light: rgba(0, 0, 0, 0.05);
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 400;
}

.text-gold { color: var(--color-gold); }
.italic-gold {
  font-style: italic;
  color: var(--color-gold);
}

.subtitle {
  display: block;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.description {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  font-weight: 300;
  max-w: 42rem;
  margin: 0 auto 3rem;
}

.description-small {
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 42rem;
  margin-top: 1.5rem;
}

/* Layout Utilities */
.container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-small {
  max-width: 56rem; /* 896px */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Cursor Follower */
.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}

@media (max-width: 1024px) {
  .cursor-follower {
    display: none;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 40;
  top: 0;
  transition: background-color 0.3s, padding 0.3s;
  padding: 1.5rem 0;
}

.navbar.scrolled {
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-btn {
  display: none;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .nav-btn {
    display: inline-block;
  }
}

.nav-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: #1a1a1d;
  color: var(--color-gold);
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--color-gold);
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(181, 140, 42, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #1a1a1d;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(181, 140, 42, 0.8);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text);
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--color-border);
  border-radius: 30px;
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Spinning Icons */
.spin-icon {
  position: absolute;
  opacity: 0.15;
  color: var(--color-gold);
  pointer-events: none;
  z-index: 1;
}
.spin-icon.slow {
  animation: spin-infinite 20s linear infinite;
}
.spin-icon.fast {
  animation: spin-infinite-reverse 15s linear infinite;
}

@keyframes spin-infinite {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-infinite-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Pulsing buttons (radial-pulse) */
@keyframes radial-pulse {
  0% { box-shadow: 0 0 0 0 rgba(181, 140, 42, 0.6); }
  100% { box-shadow: 0 0 0 20px rgba(181, 140, 42, 0); }
}
.pulse-btn {
  animation: radial-pulse 2s infinite;
  border-radius: 50%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.1); /* To allow for parallax movement */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 251, 247, 0.6), rgba(253, 251, 247, 0.8), rgba(253, 251, 247, 1));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 56rem;
  margin-top: 2rem;
  padding-bottom: 6rem;
}

.hero .title {
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero .title { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .hero .title { font-size: 6rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-text-muted);
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.scroll-indicator svg {
  width: 1rem;
  height: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

/* About Section */
.about-section {
  padding: 8rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrapper {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.image-bg-offset {
  position: absolute;
  inset: 0;
  background-color: rgba(212, 175, 55, 0.1);
  transform: translate(1rem, 1rem);
  z-index: 0;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .image-bg-offset {
  transform: translate(0.5rem, 0.5rem);
}

.about-img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.7s ease-in-out;
}

.about-image-wrapper:hover .about-img {
  filter: grayscale(0%);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.about-text .text-content p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-weight: 300;
  font-size: 1.125rem;
}

.about-text .text-content p:first-child::first-letter,
.service-text p:first-child::first-letter {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--color-gold);
  float: left;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* Services Section */
.services-section {
  padding: 8rem 0;
  background-color: var(--color-surface);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* Services Masonry Grid */
.services-masonry {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  grid-auto-rows: 10px;
  align-items: start;
}

@media (min-width: 768px) {
  .services-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-masonry { grid-template-columns: repeat(3, 1fr); }
}

.service-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-spin-icon {
  width: 60px;
  height: 60px;
  color: var(--color-gold);
  animation: spin-infinite 20s linear infinite;
}

.service-card {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 4px;
  padding: 2px;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(212, 175, 55, 0.15);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-spin-icon {
  filter: drop-shadow(0 0 10px rgba(204, 171, 0, 0.6));
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
  position: relative;
}

.service-text {
  color: var(--color-text-muted);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.service-text p {
  margin-bottom: 0.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s;
  margin-top: auto;
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover .service-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-link:hover {
  color: #fff;
}


/* Parallax Divider */
.parallax-divider {
  height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background-color: var(--color-surface);
  mix-blend-mode: multiply;
}

.divider-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
  text-align: center;
}

.quote {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.2;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .quote { font-size: 3.75rem; }
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 0;
}

.reviews-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-bg);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.reviews-carousel:active {
  cursor: grabbing;
}

.reviews-carousel.dragging {
  scroll-snap-type: none;
}

.reviews-carousel.dragging .review-card {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.reviews-carousel::-webkit-scrollbar {
  height: 6px;
}
.reviews-carousel::-webkit-scrollbar-track {
  background: var(--color-bg);
}
.reviews-carousel::-webkit-scrollbar-thumb {
  background-color: var(--color-gold);
  border-radius: 10px;
}

.review-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
  background-color: var(--color-surface);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  transition: border-color 0.5s;
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 calc(50% - 1rem); }
}

@media (min-width: 1024px) {
  .review-card { flex: 0 0 calc(33.333% - 1.33rem); }
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.stars {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.review-text {
  color: var(--color-text-muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.author {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 64rem;
}

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

.contact-desc {
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--color-gold);
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.contact-link:hover .icon-circle {
  border-color: var(--color-gold);
}

.icon-circle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.social-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}

.social-btn:hover {
  transform: translateY(-4px);
}

.social-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.whatsapp { background-color: #16a34a; box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.39); }
.whatsapp:hover { background-color: #22c55e; }

.telegram { background-color: #3b82f6; box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39); }
.telegram:hover { background-color: #60a5fa; }

.viber { background-color: #9333ea; box-shadow: 0 4px 14px 0 rgba(147, 51, 234, 0.39); }
.viber:hover { background-color: #a855f7; }

/* Contact Form */
.form-wrapper {
  background-color: var(--color-surface);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
}

@media (min-width: 1024px) {
  .form-wrapper { padding: 3rem; }
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 0.5rem 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: none;
}

.form-btn {
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border-light);
  padding: 2rem 0;
  background-color: var(--color-bg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}



.disclaimer {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-align: center;
  max-width: 20rem;
}

@media (min-width: 768px) {
  .disclaimer {
    margin-top: 0;
    text-align: right;
  }
}

/* Animations */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* Add slight delay to children items */
.reveal.active .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal.active .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal.active .reveal-item:nth-child(4) { transition-delay: 0.3s; }
.reveal.active .reveal-item:nth-child(5) { transition-delay: 0.4s; }

/* Floating Widget */
.floating-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.floating-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom center;
}

.floating-widget.active .floating-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-menu .social-btn {
  width: 3rem;
  height: 3rem;
}

.main-fab {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s, background-color 0.3s;
}

.main-fab:hover {
  transform: scale(1.1);
  background-color: #fff;
}

.main-fab svg {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s;
}

.floating-widget.active .main-fab svg {
  transform: rotate(360deg) scale(0.8);
}
.phone { background-color: #0ea5e9; box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39); }
.phone:hover { background-color: #38bdf8; }

/* Gallery and Diplomas */
.gallery-section,
.diplomas-section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.diplomas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item,
.diploma-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  aspect-ratio: 3/4;
}

.diploma-item {
  aspect-ratio: 4/3;
}

.gallery-item::before,
.diploma-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  z-index: 2;
  pointer-events: none;
  transition: border-color var(--transition-normal);
}

.gallery-item:hover,
.diploma-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

.gallery-item:hover::before,
.diploma-item:hover::before {
  border-color: rgba(212, 175, 55, 0.6);
}

.gallery-item img,
.diploma-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.diploma-item:hover img {
  transform: scale(1.05);
}
