/* ===== ГЛОБАЛЬНІ СТИЛІ ===== */
:root {
  --primary: #0057b7;
  --secondary: #ffd700;
  --dark: #121212;
  --light: #000000;
  --gray: #a0a0a0;
  --dark-bg: #1a1a1a;
  --card-bg: #252525;
  --text-light: #ffffff;
  --text-dark: #333333;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #e0e0e0;
  line-height: 1.7;
  background-color: #121212;
  overflow-x: hidden;
  transition: var(--transition);
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.text-center {
  text-align: center;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(6, 22, 40, 0.95) 100%);
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon {
  width: 100px;
  height: 100px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.logo-icon i {
  font-size: px;
  color: var(--secondary);
}

.logo-text h1 {
  font-size: 1.8rem;
  color: white;
  letter-spacing: 1px;
  margin: 0;
}

.logo-text span {
  color: var(--secondary);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  padding: 6px 12px;
  border-radius: 30px;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--secondary);
}

nav a:hover::after,
nav a.active::after {
  width: 70%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('/assets/hero.png') center/cover no-repeat;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  text-align: center;
  color: rgb(0, 0, 0);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 1px;
  text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--secondary), #ffc107);
  color: var(--dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  margin-left: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--secondary), #ffc107);
  color: var(--dark);
}

/* ===== ABOUT SECTION ===== */
.section-spacing {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header p {
  color: #b0b0b0;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.5s; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #003a7a 100%);
  font-size: 4rem;
  color: white;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--secondary), #ffaa00);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #ffffff;
}

.service-content p {
  color: #b0b0b0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== NEWS SECTION ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.3s; }
.news-card:nth-child(3) { animation-delay: 0.5s; }

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  z-index: 2;
}

.news-content {
  padding: 25px;
}

.news-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  color: #ffffff;
}

.news-content p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  gap: 8px;
  font-size: 0.95rem;
}

.read-more:hover {
  gap: 12px;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.1) 0%, rgba(6, 22, 40, 0.1) 100%);
  padding: 80px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  filter: grayscale(350%);
  opacity: 0.7;
  transition: var(--transition);
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 80%;
  max-height: 70px;
}

/* ===== TEAM SECTION ===== */
.team {
  background-color: var(--dark-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: var(--transition);
  position: relative;
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
}

.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.3s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }
.team-member:nth-child(4) { animation-delay: 0.7s; }

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin: 20px auto;
  border: 5px solid var(--secondary);
  overflow: hidden;
  position: relative;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-photo img {
  transform: scale(1.1);
}

.member-info {
  padding: 25px 15px;
  position: relative;
  z-index: 2;
}

.member-info h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #ffffff;
}

.member-position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #2a2a2a;
  color: #e0e0e0;
  transition: var(--transition);
  font-size: 1rem;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: translateY(-5px);
}

/* ===== FORM SECTION ===== */
.form-section {
  background: linear-gradient(135deg, #0a192f 0%, #0c2a4a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.form-section .section-header h2 {
  color: white;
}

.form-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.form-container {
  background: rgba(30, 30, 45, 0.95);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.form-container h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 15px;
}

.form-container h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  min-width: 280px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #333;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: rgba(40, 40, 55, 0.8);
  color: #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), #003a7a);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #004495, #002b5a);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 87, 183, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-about p {
  margin-bottom: 25px;
  opacity: 0.8;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a i {
  color: var(--secondary);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links a:hover i {
  transform: translateX(5px);
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 4px;
  min-width: 20px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  margin-left: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  padding: 5px;
  overflow: hidden;
}

.lang-switcher button {
  background: none;
  border: none;
  color: white;
  padding: 5px 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.lang-switcher button.active {
  background: var(--secondary);
  color: var(--dark);
}

/* ===== ANIMATIONS ===== */
[data-translate] {
  transition: opacity 0.3s ease;
}

.lang-change {
  opacity: 0.5;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    gap: 15px;
  }
  
  nav ul.show {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    height: 85vh;
    min-height: 650px;
  }
  
  .section-spacing {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .logo-text h1 {
    font-size: 1.6rem;
  }
  
  .logo-text span {
    font-size: 0.8rem;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .lang-switcher {
    margin-left: 10px;
  }
  
  .lang-switcher button {
    padding: 5px 10px;
    font-size: 0.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Gallery Section */
.gallery-preview {
    background-color: #121212;
    color: #e0e0e0;
    padding: 4rem 0;
}

.gallery-preview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-preview .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-preview .luxury-border {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.gallery-preview .luxury-border::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffd700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-preview .btn {
    background: rgba(0, 87, 183, 0.7);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-preview .btn:hover {
    background: #ffd700;
    color: #121212;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-preview {
        padding: 3rem 0;
    }
    
    .gallery-preview .luxury-border {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-preview {
        padding: 2rem 0;
    }
    
    .gallery-preview .luxury-border {
        font-size: 1.8rem;
    }
    
    .gallery-preview .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}