:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-glass: rgba(18, 18, 18, 0.7);
  --text-primary: #f0f0f0;
  --text-secondary: #aaaaaa;
  --accent-crimson: #8b0000;
  --accent-gold: #c5a059;
  --accent-hover: #ff2a2a;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
}

h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 2rem; position: relative; display: inline-block; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; color: var(--text-secondary); }

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--text-primary);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent-crimson);
}

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

.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-crimson);
  transition: var(--transition-smooth);
}

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

.mobile-menu {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-primary);
}

/* Sections */
section {
  padding: 6rem 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero Section */
#hero {
  position: relative;
  background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), url('../images/posters/poster-a-morte-nao-se-farta.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  margin-bottom: 1rem;
  animation: fadeUp 1s ease forwards;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 2rem;
  animation: fadeUp 1.2s ease forwards;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-crimson);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  animation: fadeUp 1.4s ease forwards;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-crimson);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

/* Biografia */
#biografia .bio-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
}

.bio-image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.bio-image img:hover {
  filter: grayscale(80%) contrast(110%);
}

.bio-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.bio-text p {
  text-align: justify;
}

.bio-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item h4 {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.stat-item ul {
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.stat-item ul li {
  margin-bottom: 0.5rem;
}

/* Filmografia (Cards) */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

a.film-card, a.lit-card, a.game-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.film-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  group: hover;
}

.film-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
}

.film-poster {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.film-card:hover .film-poster {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.film-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.film-card:hover .film-info {
  transform: translateY(0);
  opacity: 1;
}

.film-info h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.film-info p {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(139, 0, 0, 0.8);
  color: white;
  font-size: 0.7rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 3rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

/* Literatura & Jogos */
.lit-grid, .games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.lit-card, .game-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.lit-card:hover, .game-card:hover {
  border-color: var(--accent-gold);
}

.lit-card img, .game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.lit-card h4, .game-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: #050505;
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-primary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.5rem;
}

.social-links a:hover {
  color: var(--accent-gold);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  #biografia .bio-content { grid-template-columns: 1fr; gap: 2rem; }
  .bio-image { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-menu {
    display: block;
  }
  
  section { padding: 5rem 5%; }
  
  .film-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .film-poster {
    height: 250px;
  }
  
  .film-info {
    position: relative;
    transform: none;
    opacity: 1;
    background: transparent;
    padding: 1rem 0.5rem;
  }
  
  .film-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .film-info p, .tag {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

/* Movie Details Page Styles - Redesign */
.movie-hero-banner {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.movie-hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}

.movie-info-section {
  max-width: 900px;
  margin: -5rem auto 4rem;
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.movie-header-text {
  text-align: center;
  margin-bottom: 4rem;
}

.movie-meta-center {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.movie-meta-center span {
  color: var(--accent-gold);
  margin: 0 0.5rem;
}

.movie-title-large {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.movie-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.detail-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: justify;
}

/* Trailer Section */
.movie-trailer {
  padding: 4rem 5%;
  background: var(--bg-secondary);
}

.trailer-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.trailer-container iframe,
.trailer-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trailer-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Mosaic Gallery Section */
.movie-gallery {
  padding: 4rem 5%;
  background-color: #050505; /* Tom mais escuro para destacar a galeria */
}

.mosaic-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.mosaic-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  position: relative;
}

.mosaic-item:hover {
  border-color: var(--accent-gold);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 2;
}

.mosaic-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: filter 0.3s;
}

.mosaic-item:hover img {
  filter: brightness(1.2);
}

/* Lightbox / Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--accent-gold);
}

.lightbox-close:hover {
  color: var(--accent-crimson);
}

@media (max-width: 992px) {
  .movie-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .movie-poster-container {
    max-width: 400px;
    margin: 0 auto;
  }
  .carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .movie-hero {
    padding-top: 8rem;
  }
  .movie-details h1 {
    font-size: 2.2rem;
  }
  .carousel-item {
    flex: 0 0 85%;
  }
  .carousel-item img {
    height: 200px;
  }
}

/* ==========================================================================
   NEW PORTFOLIO STRUCTURAL STYLES (PARALLAX, LISTS, BIO)
   ========================================================================== */

/* Parallax Home Styles */
.parallax-section {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.5s ease;
}

.parallax-section:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  transition: transform 0.5s ease;
}

.parallax-section:hover .parallax-content {
  transform: translateY(-10px);
}

.parallax-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.parallax-meta {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Clean List Layout (Filmography & Festivals) */
.list-page-container {
  max-width: 1000px;
  margin: 120px auto 5rem;
  padding: 0 5%;
}

.list-page-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-align: center;
}

.list-category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.list-item:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 1rem;
  padding-right: 1rem;
}

.list-item-left h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.list-item-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.list-item-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-badge {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--text-secondary);
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* Biography Layout */
.bio-page-container {
  max-width: 900px;
  margin: 120px auto 5rem;
  padding: 0 5%;
  text-align: center;
}

.bio-profile-wrapper {
  margin-bottom: 3rem;
}

.bio-profile-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 2rem;
  display: block;
}

.bio-name {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.bio-subtitle {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.bio-content {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 4rem;
}

.bio-section {
  text-align: left;
  margin-bottom: 3rem;
}

.bio-section h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.bio-list {
  list-style: none;
}

.bio-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.bio-list li::before {
  content: '•';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .parallax-title { font-size: 2.5rem; }
  .list-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .list-item-right { width: 100%; justify-content: flex-start; }
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    transition: background 0.3s ease;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0,0,0,0.8);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}

/* Responsive Gallery Adjustments */
@media (max-width: 768px) {
  .mosaic-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
  }
  .mosaic-item img {
    height: 140px;
  }
  .lightbox-prev, .lightbox-next {
    font-size: 1.8rem;
    padding: 10px 15px;
  }
  .lightbox-prev {
    left: 5px;
  }
  .lightbox-next {
    right: 5px;
  }
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Movie Details Responsive Adjustments */
@media (max-width: 768px) {
  .detail-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
  .movie-title-large {
    font-size: 2.5rem;
  }
}

/* Force Single Column Gallery on Mobile */
@media (max-width: 768px) {
  .mosaic-gallery {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .mosaic-item img {
    height: auto !important;
    max-height: 300px;
    object-fit: cover;
  }
}

/* ==========================================================================
   CONTACT SECTION STYLES
   ========================================================================== */

.contact-section {
  background-color: var(--bg-primary);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 5%;
  position: relative;
}

/* Subtle background glow */
.contact-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.contact-header {
  margin-bottom: 3.5rem;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-title {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  min-width: 280px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.08);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  color: var(--accent-gold);
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.contact-card:hover .contact-value {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 5%;
    min-height: auto;
  }
  .contact-title {
    font-size: 2.2rem;
  }
  .contact-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .contact-card {
    min-width: 100%;
  }
}

