/* ===== GLOBAL VARIABLES ===== */
:root {
  --primary-color: rgb(32, 55, 61);
  --primary-light: rgb(52, 75, 81);
  --secondary-color: #bca454;
  --secondary-light: #e8c874;
  --accent-color: rgb(32, 55, 61);
  --dark-color: #222222;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --white-color: #ffffff;
  --overlay-color: rgba(0, 0, 0, 0.7);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --container-width: 1320px;

  /* Text size variables for consistency */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px; /* Consistent base font size */
}

body {
  font-family: var(--font-main);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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



/* Add this to your existing index.css file */
.navbar .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar .logo a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0; /* Adjust this value to center properly */
}

.navbar .navMenu li::marker,
.navbar .dropdown-menu li::marker {
  display: none !important;
  content: none !important;
}

/* ===== ELEGANT HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 8s linear;
}

.slideOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, 
    rgba(32, 55, 61, 0.4) 0%, 
    rgba(32, 55, 61, 0.7) 40%,
    rgba(32, 55, 61, 0.4) 100%);
  z-index: 2;
}

.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1);
}

.hero-content-wrapper {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 0 40px;
}

.hero-content {
  max-width: 800px;
  color: var(--white-color);
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  color: var(--white-color);
}

.hero-content span {
  color: var(--secondary-color);
  position: relative;
  font-weight: 700;
}

.hero-content span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0.8);
  transform-origin: center;
}

.hero-subtitle {
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 1.2rem auto;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.95;
  letter-spacing: 0.2px;
  color: var(--white-color);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 2.2rem;
  width: 100%;
}

.ctaButton, .secondaryButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--border-radius);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  font-size: var(--text-base);
  position: relative;
  overflow: hidden;
  border: none;
  min-width: 180px;
}

.ctaButton {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.ctaButton:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}



.secondaryButton {
  background-color: transparent;
  color: var(--white-color);
  border: 1.5px solid var(--white-color);
  backdrop-filter: blur(4px);
}

.secondaryButton:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--white-color);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%); 
  z-index: 3;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: var(--text-sm);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background-color: var(--white-color);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

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

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
  100% {
    opacity: 0;
    transform: translateY(8px) translateX(-50%);
  }
}

/* ===== PROFESSIONAL STUDIOS SECTION ===== */
.studios {
  width: 100%;
  padding: 100px 0;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.studios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.studios-container-wide {
  width: 100%;
  max-width: 85%;
  padding: 0 20px;
  margin: 0 auto;
}


/* SECTION HEADERS and SUBTITLE Styling */

.section-header-wide {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-wide h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.section-header-wide h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--primary-color);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.section-subtitle {
  font-size: var(--text-lg);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}


.section-subtitle-wide {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}



/* Professional Address Styling */
.professional-address-wide {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 550px;
  padding: 24px;
  background-color: rgba(188, 164, 84, 0.1);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--secondary-color);
  transition: var(--transition);
  box-sizing: border-box;
}

.address-link-block:hover .professional-address-wide {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  background-color: rgba(188, 164, 84, 0.15);
}

.professional-address-wide p {
  margin-bottom: 8px;
  font-size: var(--text-base);
  color: var(--primary-color);
}

.professional-address-wide p:first-child {
  font-style: italic;
  opacity: 0.9;
}

.professional-address-wide p:last-child {
  font-size: var(--text-lg);
  margin-bottom: 0;
  font-weight: 600;
}

.studios-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  width: 100%;
}

.professional-card {
  flex: 1 1 0;
  min-width: 0;
  border: 3px solid var(--secondary-color);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  transition: var(--transition);
  overflow: hidden;
  background: var(--white-color);
}

.professional-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(188, 164, 84, 0.3);
}

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

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.professional-card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.card-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.card-specialty {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  line-height: 1.6;
  font-weight: 500;
}

.card-excerpt {
  margin-bottom: 15px;
}

.card-excerpt p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-color);
  margin-bottom: 0;
}

.card-contact {
  font-size: 1rem;
  margin-bottom: 22px;
  margin-top: auto;
}

.card-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  word-break: keep-all;
}

.card-contact p strong {
  min-width: 75px;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  flex-shrink: 0;
  margin-right: 8px;
}

.card-contact a {
  transition: var(--transition);
  position: relative;
  font-weight: 500;
  word-break: break-all;
  hyphens: none;
  text-decoration: none;
  color: var(--accent-color);
}

.card-contact a:hover {
  color: var(--primary-color);
}




.card-cta {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.ctaButton.small {
  padding: 12px 24px;
  font-size: 0.9rem;
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 5px;
  text-align: center;
  min-width: 140px;
  white-space: nowrap;
  font-weight: 500;
  border: none;
  cursor: pointer;
  flex: 1;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.ctaButton.small:hover {
  background-color: #e8c874;
  color: var(--primary-color);
  transform: translateY(-3px);
  border: 1px solid var(--primary-color);
  box-shadow: 0 8px 20px rgba(188, 164, 84, 0.25);
}

/* PROFILE VARIANT */
.ctaButton.small.profile {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: none;
  transition: all 0.3s ease;
}

.ctaButton.small.profile:hover {
  background-color: #e8c874;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(32, 55, 61, 0.25);
}


/* ===== COLLABORATION SECTION ===== */
.collaboration-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
  z-index: 1;
  background-color: var(--primary-color);
}

.collaboration-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.collaboration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(32, 55, 61, 0.9) 0%, rgba(32, 55, 61, 0.7) 100%);
  z-index: 0;
}

.collaboration-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.collaboration-content .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.collaboration-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--white-color);
  margin-bottom: 2%;
  margin-top: 1%;
  position: relative;
}

.collaboration-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: var(--secondary-color);
}

.collaboration-intro {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  margin-top: 2%;
}


.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.collaboration-item {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(188, 164, 84, 0.3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.collaboration-item:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.collaboration-item svg {
  justify-items: center;
  align-self: center;
  width: 45px;
  height: 45px;
  margin-bottom: 1.2rem;
  color: var(--secondary-color);
}

.collaboration-item h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.8rem;
  color: var(--white-color);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.collaboration-item p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  flex-grow: 1;
}

.address-link-block {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Fix for section subtitle in collaboration section */
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--secondary-color);
  font-weight: 400;
  font-family: var(--font-main);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 15%;
  margin-top: 1.5rem;
  font-style: normal;
}

/* ===== NEWS PREVIEW SECTION ===== */
.news-preview-section {
  padding: 90px 0;
  background-color: #f9fafc;
  position: relative;
}

.news-preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.news-preview-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-preview-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--primary-color);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.news-preview-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.news-preview-header .subtitle {
  font-size: var(--text-base);
  color: var(--gray-color);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

.news-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 80%;
  margin: 0 auto 35px auto;
  padding: 0 15px;
}

.news-preview-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.news-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background-color: rgba(188, 164, 84, 0.1);
}

.news-preview-card-header {
  padding: 14px 18px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-preview-date {
  font-size: var(--text-sm);
  opacity: 0.9;
  font-weight: 500;
}

.news-preview-category {
  font-size: var(--text-sm);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 15px;
  font-weight: 600;
}

.news-preview-content {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-preview-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.news-preview-content p {
  color: var(--gray-color);
  margin-bottom: 18px;
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
}

.news-preview-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.news-preview-more {
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
  font-size: var(--text-base);
}

.news-preview-more:hover {
  color: var(--primary-color);
}

.news-preview-download {
  color: var(--primary-color);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.news-preview-download:hover {
  color: var(--accent-color);
}

.news-preview-button {
  text-align: center;
  margin-top: 25px;
}

.news-loading {
  display: flex;
  justify-content: center;
  padding: 35px 0;
  grid-column: 1 / -1;
}

.news-loading-spinner {
  width: 35px;
  height: 35px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.news-error {
  text-align: center;
  padding: 35px 0;
  color: var(--gray-color);
  grid-column: 1 / -1;
}

.news-error a {
  color: var(--secondary-color);
  font-weight: 600;
}

.news-error a:hover {
  text-decoration: underline;
}

.gototop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gototop.active {
  opacity: 1;
  visibility: visible;
}

.gototop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gototop a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.gototop svg {
  width: 18px;
  height: 18px;
}

.no-news-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: 666;
}

.no-news-message svg {
  margin-bottom: 0.8rem;
  color: #ccc;
}

.no-news-message h3 {
  margin-bottom: 0.5rem;
  color: #444;
  font-size: var(--text-xl);
}

.no-news-message p {
  color: #888;
  font-size: var(--text-base);
}

/* ===== STUDIO GALLERY SECTION ===== */
.studio-gallery-section {
  padding: 80px 0;
  background-color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.studio-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.gallery-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}




/* Gallery Carousel */
.gallery-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 500px;
}

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

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-image:hover {
  transform: scale(1.02);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

.carousel-button {
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  box-shadow: var(--shadow-sm);
  color: var(--primary-color);
}

.carousel-button:hover {
  background-color: var(--white-color);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.carousel-button--prev {
  margin-left: 20px;
}

.carousel-button--next {
  margin-right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(32, 55, 61, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background-color: var(--primary-light);
}

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

.gallery-fullscreen.active {
  display: flex;
  opacity: 1;
}

.fullscreen-content {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white-color);
  z-index: 10;
}

.fullscreen-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.fullscreen-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fullscreen-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.fullscreen-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.fullscreen-button {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  color: var(--white-color);
  margin: 0 20px;
}

.fullscreen-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}




/* ===== RESPONSIVE STYLES ===== */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1600px) {
  .studios-container-wide {
    max-width: 80%;
  }
}

/* For screens between 1200px and 1600px (typical for 15" laptops) */
@media (min-width: 1200px) and (max-width: 1600px) {
  .studios-container-wide {
     max-width: 1320px;;
  }
  
  .studios-grid {
    gap: 25px;
  }
  
  .card-image-wrapper {
    height: 240px;
  }
  
  .card-content {
    padding: 22px;
  }
  
  .card-content h3 {
    font-size: var(--text-xl);
  }
  
  .card-specialty {
    font-size: var(--text-base);
  }
  
  .card-excerpt p {
    font-size: var(--text-base);
  }
  
  .card-contact {
    font-size: var(--text-base);
  }
  
  .ctaButton.small {
    min-width: 120px;
    font-size: var(--text-base);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
}

/* For screens between 991px and 1199px (smaller laptops/tablets in landscape) */
@media (max-width: 1199px) and (min-width: 992px) {
  .studios-container-wide {
    max-width: 95%;
  }
  
  .studios-grid {
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 12.5px);
    min-width: auto;
  }
  
  .card-image-wrapper {
    height: 220px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: var(--text-lg);
  }
  
  .card-specialty {
    font-size: var(--text-base);
  }
  
  .card-excerpt p {
    font-size: var(--text-base);
  }
  
  .card-contact {
    font-size: var(--text-base);
  }
  
  .card-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .ctaButton.small {
    width: 100%;
    min-width: auto;
    font-size: var(--text-base);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
}

/* Tablets and small devices (768px to 991px) */
@media (max-width: 991px) {
  .studios {
    padding: 80px 0;
  }
  
  .section-header-wide h2 {
    font-size: var(--text-2xl);
  }
  
  .section-subtitle-wide {
    font-size: var(--text-base);
    color: var(--secondary-color);
  }
  
  .studios-container-wide {
    max-width: 90%;
  }
  
  .studios-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 15px);
    min-width: auto;
  }
  
  .card-image-wrapper {
    height: 240px;
  }
  
  .card-content {
    padding: 22px;
  }
  
  .card-content h3 {
    font-size: var(--text-lg);
  }
  
  .card-specialty {
    font-size: var(--text-base);
  }
  
  .card-excerpt p {
    font-size: var(--text-base);
  }
  
  .card-contact {
    font-size: var(--text-base);
  }
  
  .card-cta {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .ctaButton.small {
    min-width: 120px;
    font-size: var(--text-base);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
}

/* Mobile devices (480px to 767px) */
@media screen and (max-width: 767px) {
  .studios {
    padding: 60px 20px;
  }
  
  .section-header-wide {
    margin-bottom: 40px;
  }
  
  .section-header-wide h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle-wide {
    font-size: var(--text-base);
    color: var(--secondary-color);
  }
  
  .studios-container-wide {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .studios-grid {
    display: block;
    flex-direction: column;
    gap: 25px;
  }
  
  .professional-card {
    flex: 0 0 100%;
    margin-bottom: 5%;
  }
  
  .card-image-wrapper {
    height: 220px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: var(--text-lg);
  }
  
  .card-specialty {
    font-size: var(--text-base);
    margin-bottom: 15px;
  }
  
  .card-excerpt p {
    font-size: var(--text-base);
  }
  
  .card-contact {
    font-size: var(--text-base);
    margin-bottom: 18px;
  }
  
  .card-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .ctaButton.small {
    width: 100%;
    min-width: auto;
    font-size: var(--text-base);
  }
  
  /* Collaboration section fixes */
  .collaboration-section {
    padding: 60px 0;
  }
  
  .collaboration-content h2 {
    font-size: var(--text-xl);
  }
  
  .collaboration-intro {
    font-size: var(--text-base);
    margin-top: 5%;
  }
  
  .collaboration-item {
    padding: 1.5rem;
  }
  
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
  
  /* News Section - UPDATED TO EXACTLY MATCH NEWS PAGE */
  .news-preview-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .news-preview-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
    padding: 0 5%;
    gap: 25px;
  }
  
  .news-preview-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .news-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(188, 164, 84, 0.15);
  }
  
  .news-preview-card-header {
    padding: 18px 18px 18px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
  }
  
  .news-preview-date {
    font-size: 0.8rem;
  
  }
  
  .news-preview-date::before {
    width: 12px;
    height: 12px;
  }
  
  .news-preview-category {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
  
  .news-preview-content {
    padding: 0 18px;
  }
  
  .news-preview-content h3 {
    font-size: 1.170rem;
    margin-bottom: 14px;
  }
  
  .news-preview-text p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .news-preview-actions {
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 16px;
    flex-direction: row;
  }
}

/* Small mobile devices (320px to 479px) */
@media screen and (max-width: 479px) {
  .studios {
    padding: 60px 18px;
  }
  
  .section-header-wide {
    margin-bottom: 35px;
  }
  
  .section-header-wide h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle-wide {
    font-size: var(--text-base);
    color: var(--secondary-color);
  }
  
  .studios-container-wide {
    padding: 0 12px;
  }
  
  .studios-grid {
    gap: 20px;
  }
  
  .card-image-wrapper {
    height: 200px;
  }
  
  .card-content {
    padding: 18px;
  }
  
  .card-content h3 {
    font-size: var(--text-base);
    padding-bottom: 10px;
  }
  
  .card-specialty {
    font-size: var(--text-sm);
    margin-bottom: 15px;
  }
  
  .card-excerpt p {
    font-size: var(--text-sm);
  }
  
  .card-contact {
    font-size: var(--text-sm);
    margin-bottom: 18px;
  }
  
  .card-contact p {
    flex-direction: column;
    margin-bottom: 10px;
  }
  
  .card-contact p strong {
    margin-bottom: 4px;
    margin-right: 0;
    font-size: var(--text-sm);
  }
  
  .ctaButton.small {
    padding: 10px 20px;
    font-size: var(--text-sm);
    min-width: 140px;
    width: 100%;
    align-self: center;
  }
  
  /* Collaboration section fixes */
  .collaboration-section {
    padding: 50px 0;
  }
  
  .collaboration-content h2 {
    font-size: var(--text-lg);
  }
  
  .collaboration-intro {
    font-size: var(--text-base);
    margin-top: 4%;
  }
  
  .collaboration-item {
    padding: 1.3rem;
  }
  
  .collaboration-item h3 {
    font-size: var(--text-base);
  }
  
  .collaboration-item p {
    font-size: var(--text-sm);
  }
  
  /* News Section - UPDATED TO EXACTLY MATCH NEWS PAGE */
  .news-preview-section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .news-preview-grid {
    max-width: 95%;
    padding: 0 18px;
    gap: 20px;
  }
  
  .news-preview-card-header {
    flex-wrap: nowrap;
    gap: 6px;
    padding: 12px 12px 12px;
    margin-bottom: 12px;
    align-items: center;
  }
  
  .news-preview-date {
    font-size: 0.8rem;
    min-width: max-content;
    margin-left: -2%;
  }
  
  .news-preview-date::before {
    width: 8px;
    height: 8px;
  }
  
  .news-preview-category {
    font-size: 0.8rem;
    padding: 2px 6px 2px 4px;
    min-width: max-content;
  }
  
  .news-preview-category::before {
    width: 3px;
    height: 3px;
    margin-right: 3px;
  }
  
  .news-preview-content {
    padding: 0 12px;
  }
  
  .news-preview-content h3 {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
  
  .news-preview-text p {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  
  .news-preview-actions {
    flex-direction: row;
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* Extra small devices (below 320px) */
@media screen and (max-width: 319px) {
  .section-header-wide h2 {
    font-size: var(--text-lg);
  }
  
  .card-content h3 {
    font-size: var(--text-sm);
  }
  
  .card-specialty {
    font-size: var(--text-xs);
    color: var(--secondary-color);
  }
  
  .card-excerpt p {
    font-size: var(--text-xs);
  }
  
  .card-contact {
    font-size: var(--text-xs);
  }
  
  .ctaButton.small {
    font-size: var(--text-xs);
    padding: 8px 16px;
  }
  
  /* Collaboration section fixes */
  .collaboration-content h2 {
    font-size: var(--text-base);
  }
  
  .collaboration-item h3 {
    font-size: var(--text-sm);
  }
  
  .collaboration-item p {
    font-size: var(--text-xs);
  }
  
  /* News Section - UPDATED TO EXACTLY MATCH NEWS PAGE */
  .section-header h2 {
    font-size: var(--text-lg);
  }
  
  .news-preview-grid {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .news-preview-card-header {
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 10px 10px;
    align-items: center;
  }
  
  .news-preview-date,
  .news-preview-category {
    flex-basis: 100%;
    justify-content: flex-start;
  }
  
  .news-preview-actions {
    flex-direction: row;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 991px) and (orientation: landscape) {
  .studios-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 10px);
  }
  
  .card-image-wrapper {
    height: 200px;
  }
  
  .card-content h3 {
    font-size: var(--text-base);
  }
  
  .card-specialty {
    font-size: var(--text-sm);
  }
  
  .card-excerpt p {
    font-size: var(--text-sm);
  }
  
  .card-contact {
    font-size: var(--text-sm);
  }
  
  .card-cta {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .ctaButton.small {
    min-width: 120px;
    font-size: var(--text-sm);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-base);
  }
  
  .collaboration-item p {
    font-size: var(--text-sm);
  }
  
  /* News section adjustments - EXACTLY MATCHING NEWS PAGE */
  .news-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 90%;
    padding: 0 10px;
  }
  
  .news-preview-card-header {
    padding: 16px 16px 16px;
    margin-bottom: 16px;
    align-items: center;
  }
  
  .news-preview-actions {
    flex-direction: row;
    gap: 12px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .studios-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) and (orientation: landscape) {
  .card-image-wrapper {
    height: 180px;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-content h3 {
    font-size: var(--text-sm);
  }
  
  .card-specialty {
    font-size: var(--text-xs);
  }
  
  .card-excerpt p {
    font-size: var(--text-xs);
  }
  
  .card-contact {
    font-size: var(--text-xs);
  }
  
  .ctaButton.small {
    font-size: var(--text-xs);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-sm);
  }
  
  .collaboration-item p {
    font-size: var(--text-xs);
  }
}

/* Large Desktop Breakpoint (1440px) */
@media (max-width: 1440px) {
  .hero-content h1 {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-xl);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
}

/* Desktop Breakpoint (1200px) */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }
  
  .studios-container-wide {
    max-width: 90%;
  }
  
  .studios-grid {
    gap: 30px;
  }
  
  .professional-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
  }
  
  .card-image-wrapper {
    height: 240px;
  }
  
  .card-content {
    padding: 22px;
  }
  
  .card-content h3 {
    font-size: var(--text-xl);
  }
  
  .card-specialty {
    font-size: var(--text-base);
  }
  
  .ctaButton.small {
    min-width: 120px;
    font-size: var(--text-base);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
}

/* Tablet Breakpoints (1024px) */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 550px;
  }
  
  .hero-content h1 {
    font-size: var(--text-2xl);
  }
  
  .hero-content p {
    font-size: var(--text-base);
  }
  
  .collaboration-grid {
    gap: 20px;
  }
  
  .collaboration-item {
    padding: 1.8rem;
    min-height: 260px;
  }
  
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
  
  .news-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 85%;
  }
}

/* Tablet Breakpoints (991px) */
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .ctaButton, .secondaryButton {
    width: 100%;
    max-width: 280px;
  }
  
  /* Studios Section */
  .studios {
    padding: 80px 0;
  }
  
  .section-header-wide h2 {
    font-size: var(--text-3xl);
  }
  
  .section-subtitle-wide {
    font-size: var(--text-lg);
    color: var(--secondary-color);
    max-width: 87%;
  }
  
  .studios-container-wide {
    max-width: 90%;
  }
  
  .studios-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 15px);
    min-width: auto;
  }
  
  .card-image-wrapper {
    height: 240px;
  }
  
  .card-content {
    padding: 22px;
  }
  
  .card-content h3 {
    font-size: var(--text-xl);
  }
  
  .card-specialty {
    font-size: var(--text-base);
  }
  
  .card-cta {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .ctaButton.small {
    min-width: 120px;
    font-size: var(--text-base);
  }
  
  /* Professional Address */
  .professional-address-wide {
    margin-bottom: 40px;
    padding: 20px;
  }
  
  .professional-address-wide p:last-child {
    font-size: var(--text-lg);
  }
  
  /* Collaboration Section */
  .collaboration-section {
    min-height: auto;
    padding: 70px 0;
  }
  
  .collaboration-content h2 {
    font-size: var(--text-xl);
  }
  
  .collaboration-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .collaboration-item {
    min-height: auto;
    padding: 1.8rem;
  }
  
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
  
  /* News Section - EXACTLY MATCHING NEWS PAGE */
  .news-preview-section {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: var(--text-2xl);
  }
  
  .section-subtitle {
    font-size: var(--text-lg);
  }
  
  .news-preview-grid {
    max-width: 90%;
    gap: 30px;
  }
  
  .news-preview-card-header {
    padding: 20px 20px 20px;
    margin-bottom: 20px;
    align-items: center;
  }
  
  .news-preview-content h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .news-preview-actions {
    flex-direction: row;
    gap: 20px;
  }
}

/* Honor 70 specific landscape fixes */
@media (width: 384px) and (height: 832px) and (orientation: landscape) {
  .studios-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 7.5px);
  }
  
  .card-image-wrapper {
    height: 180px;
  }
  
  .card-content {
    padding: 15px;
  }
  
  .card-content h3 {
    font-size: var(--text-sm);
  }
  
  .card-specialty {
    font-size: var(--text-xs);
  }
  
  .card-excerpt p {
    font-size: var(--text-xs);
  }
  
  .card-contact {
    font-size: var(--text-xs);
  }
  
  .card-cta {
    flex-direction: column;
    gap: 8px;
  }
  
  .ctaButton.small {
    min-width: 100px;
    font-size: var(--text-xs);
    padding: 8px 16px;
  }
  
  /* Fix header sizes for Honor 70 landscape */
  .section-header-wide h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle-wide {
    font-size: var(--text-base);
    color: var(--secondary-color);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-sm);
  }
  
  .collaboration-item p {
    font-size: var(--text-xs);
  }
  
  .section-header h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
}

/* iPad specific fixes */
@media (width: 768px) and (height: 1024px) {
  .studios-grid {
    flex-wrap: wrap;
    gap: 25px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 12.5px);
  }
  
  .card-image-wrapper {
    height: 220px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: var(--text-lg);
  }
  
  .card-specialty {
    font-size: var(--text-base);
  }
  
  .card-excerpt p {
    font-size: var(--text-base);
  }
  
  .card-contact {
    font-size: var(--text-base);
  }
  
  .card-cta {
    flex-direction: row;
    gap: 10px;
  }
  
  .ctaButton.small {
    min-width: 110px;
    font-size: var(--text-base);
  }
  
  /* Ensure header consistency on iPad */
  .section-header-wide h2 {
    font-size: 2rem;
  }
  
  .section-subtitle-wide {
    font-size: 1.1rem;
    color: var(--secondary-color);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-lg);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
  
  /* News Section - EXACTLY MATCHING NEWS PAGE FOR IPAD */
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
  }
  
  .news-preview-grid {
    gap: 25px;
  }
  
  .news-preview-card-header {
    padding: 18px 18px 18px;
    margin-bottom: 18px;
  }
  
  .news-preview-actions {
    flex-direction: row;
    gap: 16px;
  }
}

/* iPad Pro specific fixes */
@media (width: 1024px) and (height: 1366px) {
  .studios-grid {
    flex-wrap: nowrap;
    gap: 30px;
  }
  
  .professional-card {
    flex: 1 1 0;
  }
  
  .card-image-wrapper {
    height: 250px;
  }
  
  .card-content {
    padding: 25px;
  }
  
  .card-content h3 {
    font-size: var(--text-xl);
  }
  
  .card-specialty {
    font-size: var(--text-lg);
  }
  
  .card-excerpt p {
    font-size: var(--text-base);
  }
  
  .card-contact {
    font-size: var(--text-base);
  }
  
  .card-cta {
    flex-direction: row;
    gap: 12px;
  }
  
  .ctaButton.small {
    min-width: 130px;
    font-size: var(--text-base);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-xl);
  }
  
  .collaboration-item p {
    font-size: var(--text-base);
  }
}

/* Landscape orientation adjustments */
@media (max-width: 991px) and (orientation: landscape) {
  /* Hero section adjustments */
  .hero {
    min-height: 500px;
    height: 100vh;
  }
  
  .hero-content-wrapper {
    width: 90%;
    margin-top: -5%;
  }
  
  .hero-content h1 {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
    margin: 0.8rem auto;
  }
  
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.8rem;
  }
  
  .ctaButton, .secondaryButton {
    min-width: 160px;
    padding: 12px 20px;
    font-size: var(--text-sm);
  }
  
  /* Studios section adjustments */
  .studios-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .professional-card {
    flex: 0 0 calc(50% - 10px);
    min-width: auto;
  }
  
  .card-image-wrapper {
    height: 200px;
  }
  
  .card-content {
    padding: 18px;
  }
  
  .card-content h3 {
    font-size: var(--text-base);
  }
  
  .card-specialty {
    font-size: var(--text-sm);
  }
  
  /* Collaboration section adjustments */
  .collaboration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .collaboration-item {
    padding: 1.5rem;
    min-height: 240px;
  }
  
  .collaboration-item h3 {
    font-size: var(--text-base);
  }
  
  .collaboration-item p {
    font-size: var(--text-sm);
  }
  
  /* News section adjustments - EXACTLY MATCHING NEWS PAGE */
  .news-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 90%;
    padding: 0 10px;
  }
  
  .news-preview-card-header {
    padding: 16px 16px 16px;
    margin-bottom: 16px;
    align-items: center;
  }
  
  .news-preview-actions {
    flex-direction: row;
    gap: 16px;
  }
}

/* PROFESSIONAL ADDRESS STYLING FOR SMALL DEVICES */
@media (max-width: 500px) {
  .professional-address-wide {
    padding: 16px !important;
    margin: 0 auto 40px !important;
    max-width: 90% !important;
    border-left: 2px solid var(--secondary-color) !important;
    background-color: rgba(188, 164, 84, 0.08) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
  }
  
  .address-link-block:hover .professional-address-wide {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    background-color: rgba(188, 164, 84, 0.12) !important;
  }
  
  .professional-address-wide p {
    margin-bottom: 8px !important;
    font-size: var(--text-sm) !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }
  
  .professional-address-wide p:first-child {
    font-style: italic !important;
    opacity: 0.85 !important;
    font-size: var(--text-xs) !important;
    margin-bottom: 6px !important;
  }
  
  .professional-address-wide p:last-child {
    font-size: var(--text-base) !important;
    margin-bottom: 0 !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
  }
  
  /* Add a subtle arrow indicator to show it's clickable */
  .professional-address-wide::after {
    content: '↗';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: var(--text-xs);
    color: var(--secondary-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .address-link-block:hover .professional-address-wide::after {
    opacity: 1;
  }
}

/* Specific adjustments for very small devices like iPhone SE */
@media (max-width: 320px) {
  .professional-address-wide {
    padding: 14px !important;
    max-width: 95% !important;
  }
  
  .professional-address-wide p {
    font-size: var(--text-xs) !important;
  }
  
  .professional-address-wide p:first-child {
    font-size: var(--text-xs) !important;
  }
  
  .professional-address-wide p:last-child {
    font-size: var(--text-sm) !important;
  }
}

/* Specific adjustments for Honor 70 (480px width but small screen) */
@media (max-width: 480px) and (min-height: 890px) {
  .professional-address-wide {
    margin-bottom: 35px !important;
    max-width: 85% !important;
  }
  
  .section-header-wide h2 {
    font-size: var(--text-xl);
  }
  
  .section-subtitle-wide {
    font-size: var(--text-base);
    color: var(--secondary-color);
  }
  
  /* Collaboration section fixes */
  .collaboration-item h3 {
    font-size: var(--text-base);
  }
  
  .collaboration-item p {
    font-size: var(--text-sm);
  }
}

/* Additional touch feedback for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .address-link-block:active .professional-address-wide {
    transform: scale(0.98) !important;
    background-color: rgba(188, 164, 84, 0.15) !important;
  }
  
  .professional-card:hover {
    transform: none;
  }
  
  .ctaButton:hover, .secondaryButton:hover {
    transform: none;
  }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-content h1,
  .hero-content p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Print styles */
@media print {
  .hero-scroll-indicator,
  .gototop,
  .ctaButton,
  .secondaryButton {
    display: none !important;
  }
  
  .hero-section {
    height: auto;
    min-height: auto;
    background: white !important;
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-content {
    color: black !important;
    text-shadow: none !important;
    position: relative;
    margin-top: 0;
  }
  
  .hero-content h1 {
    color: black !important;
    font-size: 2.5rem;
  }
  
  .hero-content h1 span {
    color: #333 !important;
  }
  
  .hero-content p {
    color: #444 !important;
    font-size: 1rem;
  }
  
  /* Collaboration section fixes for print */
  .collaboration-item h3 {
    color: black !important;
    font-size: 1rem;
  }
  
  .collaboration-item p {
    color: #444 !important;
    font-size: 0.875rem;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .hero-content p,
  .hero-cta {
    animation: none;
  }
  
  .hero-scroll-indicator {
    animation: none;
  }
  
  .mouse::before {
    animation: none;
  }
}

/* Responsive Design for Gallery */
@media (max-width: 991px) {
  .studio-gallery-section {
    padding: 60px 0;
  }
  
  .carousel-track {
    height: 400px;
  }
  
  .carousel-button {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .studio-gallery-section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: var(--text-2xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .carousel-track {
    height: 300px;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  
  .carousel-button--prev {
    margin-left: 10px;
  }
  
  .carousel-button--next {
    margin-right: 10px;
  }
  
  .fullscreen-content {
    width: 95%;
    height: 95%;
  }
  
  .fullscreen-button {
    margin: 0 10px;
  }
}

@media (max-width: 479px) {
  .carousel-track {
    height: 250px;
  }
  
  .carousel-button {
    width: 35px;
    height: 35px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}




/* ===== FORCE CONSISTENCY FOR ALL SECTION-SUBTITLE-WIDE ELEMENTS ===== */

.section-subtitle-wide {
  font-size: 1.2rem !important;
  color: var(--secondary-color) !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  opacity: 0.9 !important;
  font-family: var(--font-main) !important;
  text-align: center !important;
}

@media (max-width: 991px) {
  .section-subtitle-wide {
    font-size: var(--text-lg) !important;
    max-width: 90% !important;
  }
}

@media (max-width: 767px) {
  .section-subtitle-wide {
    font-size: var(--text-base) !important;
    max-width: 95% !important;
  }
}

@media (max-width: 480px) {
  .section-subtitle-wide {
    font-size: var(--text-base) !important;
    max-width: 97% !important;
  }
}