/*-----------------------------------*\
  #RESPONSIVE STYLES FOR KAINAT CHAUDHARY
  #DESIGNED WITH MOBILE-FIREST APPROACH
\*-----------------------------------*/

:root {
  /* Color System */
  --primary-black: #000000;
  --primary-white: #ffffff;
  --accent-gold: #d4af37;
  --accent-red: #ff003d;
  --gray-dark: #1a1a1a;
  --gray-medium: #333333;
  --gray-light: #cccccc;

  /* Typography */
  --font-heading: "League Spartan", sans-serif;
  --font-body: "Roboto", sans-serif;

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

  /* Breakpoints */
  --mobile: 480px;
  --tablet: 768px;
  --laptop: 1024px;
  --desktop: 1200px;
  --large: 1440px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/*-----------------------------------*\
  #GLOBAL RESET & BASE STYLES
\*-----------------------------------*/

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

html {
  font-size: 62.5%; /* 10px base for easier rem calculations */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--primary-white);
  background-color: var(--primary-black);
  overflow-x: hidden;
}

/* Improved focus styles for accessibility */
:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: var(--accent-gold);
  color: var(--primary-black);
}

/*-----------------------------------*\
  #REUSABLE UTILITY CLASSES
\*-----------------------------------*/

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive text scaling */
.text-xs {
  font-size: 1.2rem;
}
.text-sm {
  font-size: 1.4rem;
}
.text-md {
  font-size: 1.6rem;
}
.text-lg {
  font-size: 1.8rem;
}
.text-xl {
  font-size: 2.4rem;
}
.text-xxl {
  font-size: 3.2rem;
}
.text-xxxl {
  font-size: 4.8rem;
}

@media (min-width: 768px) {
  .text-xs {
    font-size: 1.4rem;
  }
  .text-sm {
    font-size: 1.6rem;
  }
  .text-md {
    font-size: 1.8rem;
  }
  .text-lg {
    font-size: 2.4rem;
  }
  .text-xl {
    font-size: 3.2rem;
  }
  .text-xxl {
    font-size: 4.8rem;
  }
  .text-xxxl {
    font-size: 6.4rem;
  }
}

/*-----------------------------------*\
  #HEADER & NAVIGATION
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: var(--space-xs) 0;
  background-color: rgba(0, 0, 0, 0.98);
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--primary-white);
  text-decoration: none;
  z-index: 1001;
}

/* Mobile menu button */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  /* background: transparent; */
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-white);
  margin: 3px 0;
  transition: var(--transition-normal);
}

/* Navigation */
.navbar {
  display: flex;
}

.navbar-list {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.navbar-link {
  color: var(--primary-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

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

.navbar-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-normal);
}

.navbar-link:hover::after {
  width: 100%;
}

/* Download CV button */
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  color: var(--primary-black);
  padding: var(--space-xs) var(--space-md);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile navigation */
@media (max-width: 992px) {
  .nav-toggle-btn {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-normal);
    z-index: 1000;
    padding: var(--space-xl);
    border-left: 1px solid var(--gray-medium);
  }

  .navbar.active {
    right: 0;
  }

  .navbar-list {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .navbar-link {
    font-size: 2.2rem;
  }

  /* Hamburger animation */
  .nav-toggle-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
  }

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

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

@media (max-width: 480px) {
  .logo {
    font-size: 2.4rem;
  }

  .navbar {
    width: 100%;
    max-width: none;
  }
}

/*-----------------------------------*\
  #HERO SECTION
\*-----------------------------------*/

.section.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-item.active {
  opacity: 1;
}

.hero-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 3;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: var(--space-xs);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.indicator.active {
  background: var(--primary-white);
  transform: scale(1.2);
}

/* Hero content positioning */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--primary-white);
  max-width: 800px;
  padding: var(--space-md);
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-text {
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

/* Responsive hero styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 5rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .section.hero {
    min-height: 300px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-text {
    font-size: 1.6rem;
  }

  .carousel-controls {
    bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .section.hero {
    height: 20vh;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

/*-----------------------------------*\
  #CTA SECTION FIXES
\*-----------------------------------*/

.section.cta {
  position: relative;
  padding: var(--space-xl) 0;
  background-color: var(--gray-dark);
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.cta-title {
  font-size: 2.2rem;
  line-height: 1.6;
  padding: var(--space-md) 0;
  margin-bottom: var(--space-xl);
  color: var(--primary-white);
  border-top: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  display: block;
}

.btn-wrapper {
  margin-top: var(--space-lg);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--primary-black);
  color: var(--accent-gold);
  padding: var(--space-sm) var(--space-xl);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-size: 1.6rem;
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
    padding: var(--space-sm) 0;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.6rem;
  }

  .btn-secondary {
    padding: var(--space-xs) var(--space-lg);
    font-size: 1.4rem;
  }
}

/*-----------------------------------*\
  #SECTION HEADINGS
\*-----------------------------------*/

.section-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-sm);
  color: var(--accent-gold);
  transition: all var(--transition-normal);
  cursor: default;
}

.section-heading:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-gold),
    transparent
  );
  transition: all var(--transition-normal);
}

.section-heading:hover::after {
  width: 200px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary-white),
    transparent
  );
}

@media (max-width: 992px) {
  .section-heading {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 3.2rem;
    margin-bottom: var(--space-lg);
  }

  .section-heading::after {
    width: 80px;
    height: 3px;
  }

  .section-heading:hover::after {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 2.8rem;
  }
}

/*-----------------------------------*\
  #ABOUT SECTION
\*-----------------------------------*/

.section.about {
  padding: var(--space-xl) 0;
  position: relative;
}

.about-section-border {
  border: 5px solid var(--primary-black);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: border-color var(--transition-normal);
}

.about-section-border:hover {
  border-color: var(--accent-gold);
}

.centered-boxes {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.text-box,
.image-box {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: 500px;
  border: 3px solid var(--accent-gold);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.text-box {
  padding: var(--space-lg);
  background-color: var(--primary-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.text-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin-bottom: var(--space-md);
  color: var(--accent-gold);
}

.text-content {
  font-size: 1.6rem;
  line-height: 1.7;
}

.additional-text {
  display: block;
  margin-top: var(--space-md);
}

.image-box {
  position: relative;
  overflow: hidden;
}

.image-box:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.image-box:hover .img-cover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .centered-boxes {
    flex-direction: column;
  }

  .text-box,
  .image-box {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .text-box,
  .image-box {
    height: 400px;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .about-section-border {
    padding: var(--space-md);
  }

  .text-box,
  .image-box {
    height: 350px;
    min-width: auto;
  }

  .text-box {
    padding: var(--space-md);
  }

  .section-title {
    font-size: 2.4rem;
  }
}

/*-----------------------------------*\
  #FILMS SECTION
\*-----------------------------------*/

.section.films {
  padding: var(--space-xl) 0;
}

.films-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.film-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background-color: var(--gray-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.film-card.reversed {
  direction: rtl;
}

.film-card.reversed > * {
  direction: ltr;
}

.film-content {
  padding: var(--space-lg);
}

.film-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--accent-red);
  margin-bottom: var(--space-md);
}

.film-meta {
  margin-bottom: var(--space-lg);
}

.film-meta p {
  margin-bottom: var(--space-xs);
  font-size: 1.6rem;
}

.film-desc h4 {
  font-size: 1.8rem;
  color: var(--accent-red);
  margin: var(--space-lg) 0 var(--space-xs);
}

.film-media {
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  text-align: center;
  padding: var(--space-sm);
  font-style: italic;
  color: var(--gray-light);
}

@media (max-width: 992px) {
  .film-card {
    grid-template-columns: 1fr;
  }

  .film-card.reversed .film-media {
    order: -1;
  }

  .film-content {
    padding: var(--space-md);
  }
}

@media (max-width: 768px) {
  .film-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .film-content {
    padding: var(--space-md) var(--space-sm);
  }

  .film-title {
    font-size: 2.2rem;
  }

  .film-desc h4 {
    font-size: 1.6rem;
  }
}

/*-----------------------------------*\
  #VIDEO GALLERY FIXES
\*-----------------------------------*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  font-size: 3.5rem;
  margin: 40px 0;
  color: var(--primary-white);
  font-weight: 700;
}

/* Video Gallery Styles */
.gallery {
  padding: 40px 0;
}

.movie-row {
  position: relative;
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.movie-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px;
  width: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.movie-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.movie {
  flex: 0 0 auto;
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.movie:hover {
  transform: scale(1.03);
}

.video-container {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background-color: #000;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.movie:hover .video-player {
  opacity: 1;
}

.movie-info {
  padding: 15px;
  background: #1a1a1a;
}

.movie-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.movie-meta {
  font-size: 14px;
  color: #ccc;
  display: flex;
  gap: 12px;
}

.movie-meta span {
  display: flex;
  align-items: center;
}

.movie-meta i {
  margin-right: 5px;
  color: #d4af37;
}

/* Arrow Buttons */
.arrow {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: 15px;
}

.arrow.right {
  right: 15px;
}

.more-btn {
  text-align: center;
  margin-top: 40px;
}

.more-btn .btn {
  background: #ff003d;
  color: white;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.more-btn .btn:hover {
  background: #ff2a52;
  transform: translateY(-3px);
}

/* Mobile Responsive */
/* Responsive Fix: One Card per Slide on Small Devices */
@media (max-width: 768px) {
  .movie-container {
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    gap: 15px;
  }

  .movie {
    flex: 0 0 85%; /* show only one card fully */
    scroll-snap-align: center;
    margin: 0 auto;
  }

  .arrow {
    display: none; /* hide arrows for tablet view if you prefer swipe */
  }
}

@media (max-width: 480px) {
  .movie-container {
    scroll-snap-type: x mandatory;
    gap: 10px;
  }

  .movie {
    flex: 0 0 90%; /* one full card fits on small screens */
    scroll-snap-align: center;
  }

  .arrow {
    display: block; /* keep arrows visible on small mobile if you want */
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.arrow {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 2rem;
  }

  .movie {
    width: 240px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .more-btn .btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/*-----------------------------------*\
  #CONTACT FORM FIXES
\*-----------------------------------*/

.contact-section {
  padding: var(--space-xl) 0;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.contact-section .section-text {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.form-row {
  margin-bottom: var(--space-xl);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--gray-dark);
  padding: var(--space-xl);
  border-radius: 12px;
}

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.input-field {
  background-color: var(--primary-white);
  border: 1px solid var(--gray-medium);
  border-radius: 6px;
  padding: var(--space-sm);
  color: var(--primary-white);
  font-size: 1.6rem;
  transition: all var(--transition-normal);
}

.input-field:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.input-field::placeholder {
  color: var(--gray-light);
}

textarea.input-field {
  grid-column: 1 / -1;
  min-height: 200px; /* Taller message box */
  width: 100%;
  resize: vertical;
  font-family: inherit;
}

/* FIXED: Center aligned, smaller button like More Videos */
.contact-form .btn {
  display: inline-block;
  width: auto;
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  color: var(--primary-black);
  border: none;
  padding: var(--space-sm) var(--space-xl);
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  margin: 0 auto;
  text-align: center;
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.form-button-container {
  text-align: center;
  margin-top: var(--space-md);
}

.info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.contact-item {
  text-align: center;
}

.contact-card {
  background-color: var(--gray-dark);
  padding: var(--space-lg);
  border-radius: 8px;
  height: 100%;
  transition: transform var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2rem;
  color: var(--primary-black);
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  color: var(--accent-gold);
}

.card-link,
.card-address {
  display: block;
  color: var(--primary-white);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

.card-address {
  font-style: normal;
  line-height: 1.5;
}

/* Responsive contact form */
@media (max-width: 992px) {
  .info-row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: var(--space-lg);
  }

  .input-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: var(--space-md);
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }

  textarea.input-field {
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: var(--space-md);
  }

  .contact-card {
    padding: var(--space-md) var(--space-sm);
  }

  .card-title {
    font-size: 1.6rem;
  }

  textarea.input-field {
    min-height: 120px;
  }

  .contact-form .btn {
    padding: var(--space-xs) var(--space-lg);
    font-size: 1.4rem;
  }
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--primary-black);
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid var(--gray-medium);
}

.copyright {
  font-size: 1.4rem;
  color: var(--gray-light);
}

.copyright-link {
  color: var(--accent-red);
  text-decoration: none;
  transition: color var(--transition-normal);
}

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

/*-----------------------------------*\
  #BACK TO TOP BUTTON
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 50px;
  height: 50px;
  background-color: var(--accent-gold);
  color: var(--primary-black);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.back-top-btn:hover {
  transform: translateY(-5px);
  background-color: var(--primary-black);
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .back-top-btn {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    bottom: var(--space-sm);
    right: var(--space-sm);
  }
}

/*-----------------------------------*\
  #ANIMATIONS & EFFECTS
\*-----------------------------------*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

/*-----------------------------------*\
  #PRINT STYLES
\*-----------------------------------*/

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .header,
  .nav-toggle-btn,
  .carousel-controls,
  .arrow,
  .back-top-btn,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .container {
    width: 100%;
    max-width: none;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: black;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

#myBtn {
  display: inline-block;
  background-color: var(--primary-black);
  color: var(--accent-gold);
  padding: var(--space-sm) var(--space-xl);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-size: 1.6rem;
  text-align: center;
}

.modelBtn {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

#myBtn:hover {
  background: #b8911b;
  color: white;
  cursor: pointer;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.closeModel {
  float: right;
  padding: 5px;
  color: white;
  font-weight: bold;
  background: none;
  border: none;
}

/* =============  Second Model   =============== */

/* ===== Modal Background ===== */
._gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  overflow: auto;
}

/* ===== Modal Content ===== */
._gallery-modal-content {
  background-color: black;
  margin: 8% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 8px;
  color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(184, 145, 27, 0.3);
}

/* ===== Open Button ===== */
#_galleryOpenBtn {
  display: inline-block;
  background-color: var(--primary-black);
  color: var(--accent-gold);
  padding: var(--space-sm) var(--space-xl);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
  font-size: 1.6rem;
  text-align: center;
}

#_galleryOpenBtn:hover {
  background: #b8911b;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(184, 145, 27, 0.5);
}

/* ===== Button Container ===== */
._gallery-modelBtn {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

/* ===== Close Button ===== */
._gallery-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: 0.3s ease;
}

._gallery-close:hover,
._gallery-close:focus {
  color: #fff;
  cursor: pointer;
  transform: rotate(90deg);
}

/* open third model */

/* ===== Modal Background ===== */
._BTS-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  overflow: auto;
}

/* ===== Modal Content ===== */
._BTS-modal-content {
  background-color: black;
  margin: 8% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 8px;
  color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(184, 145, 27, 0.3);
}

/* ===== Open Button ===== */
#_BTSOpenBtn {
  display: inline-block;
  background-color: var(--primary-black);
  color: var(--accent-gold);
  padding: var(--space-sm) var(--space-xl);
  border: 2px solid var(--accent-gold);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  text-align: center;
}

#_BTSOpenBtn:hover {
  background: #b8911b;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(184, 145, 27, 0.5);
}

/* ===== Button Container (Optional) ===== */
._BTS-modelBtn {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

/* ===== Close Button ===== */
._BTS-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: 0.3s ease;
}

._BTS-close:hover,
._BTS-close:focus {
  color: #fff;
  cursor: pointer;
  transform: rotate(90deg);
}
