/* ==========================================================================
   Infinite Reach Marketing - Main Stylesheet
   Version: 2.0.0
   Author: Infinite Reach Marketing
   Description: Premium stylesheet for Infinite Reach Marketing website.
   Color Palette:
     - Primary/Dark:   #1A1A1A
     - Secondary:      #4A4A4A
     - Muted:          #9A9A9A
     - Accent Gold:    #C9A96E
     - Light BG:       #F5F5F5
     - White:          #FFFFFF
   ========================================================================== */


/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F5F5F5;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: #C9A96E;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #C9A96E;
  color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

input,
textarea,
select,
button {
  font: inherit;
}


/* ==========================================================================
   2. Skip Link (Accessibility)
   ========================================================================== */

.skip-link {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 10000;
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.skip-link:focus {
  top: 0;
}


/* ==========================================================================
   3. Utility Classes
   ========================================================================== */

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

.section-padding {
  padding: 80px 0;
}

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

/* --- Buttons --- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 44px;
  min-height: 44px;
  line-height: 1.2;
  border: 2px solid transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #1A1A1A;
  color: #F5F5F5;
  border-color: #1A1A1A;
  box-shadow: 0 4px 15px rgba(26,26,26,0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: transparent;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,26,26,0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border-color: #1A1A1A;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #1A1A1A;
  color: #F5F5F5;
  border-color: #C9A96E;
  box-shadow: 0 4px 15px rgba(26,26,26,0.2);
  transform: translateY(-2px);
}

.btn-light {
  background-color: #F5F5F5;
  color: #1A1A1A;
  border-color: #F5F5F5;
}

.btn-light:hover,
.btn-light:focus {
  background-color: transparent;
  color: #F5F5F5;
  border-color: #F5F5F5;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* --- Section Header --- */

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

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1A1A1A;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #C9A96E;
  margin: 20px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: #4A4A4A;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}


/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* --- Logo --- */

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F5F5F5;
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 0.75rem;
  color: #C9A96E;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- Main Navigation --- */

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: #F5F5F5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #C9A96E;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C9A96E, #E0C88A);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Nav CTA Button --- */

.nav-cta {
  border: 1px solid rgba(245,245,245,0.4);
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-cta:hover {
  background-color: #C9A96E;
  color: #0D0D0D;
  border-color: #C9A96E;
}

.nav-cta::after {
  display: none !important;
}

/* --- Hamburger Toggle --- */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #F5F5F5;
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: #F5F5F5;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --- Nav Overlay (mobile) --- */

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
  display: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nav-overlay.active {
  display: block;
}


/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #F5F5F5;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 40%, #1f1f1f 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(31, 31, 31, 0.75) 100%);
}

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

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(245, 245, 245, 0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0.3;
}


/* ==========================================================================
   6. NYC Skyline SVG Divider
   ========================================================================== */

.skyline-divider {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: transparent;
}

.skyline-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}


/* ==========================================================================
   7. About / Intro Section
   ========================================================================== */

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

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #C9A96E;
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #C9A96E;
  margin-top: 15px;
  border-radius: 2px;
}

.about-content p {
  color: #4A4A4A;
  margin-bottom: 15px;
  line-height: 1.8;
}


/* ==========================================================================
   8. Services Cards
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #eeeeee;
  border-top: 3px solid transparent;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.06);
  border-top: 3px solid #C9A96E;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #C9A96E;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ==========================================================================
   9. Testimonials Slider
   ========================================================================== */

.testimonials {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #252525 100%);
  color: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 50px 50px;
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: fadeSlide 0.6s ease;
}

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

.testimonial-slide.active {
  display: block;
}

.testimonial-slide blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  position: relative;
}

.testimonial-slide blockquote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(201,169,110,0.3);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  color: #C9A96E;
}

.testimonial-role {
  color: #9A9A9A;
  font-size: 0.9rem;
}

/* --- Slider Dots --- */

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4A4A4A;
  cursor: pointer;
  border: none;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-clip: content-box;
  box-sizing: content-box;
  padding: 16px;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-dot.active {
  background-color: #C9A96E;
}

/* --- Slider Arrows --- */

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-arrows button,
.slider-prev,
.slider-next {
  background: none;
  border: none;
  color: #F5F5F5;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-prev { left: -20px; }
.slider-next { right: -20px; }

.slider-arrows button:hover,
.slider-prev:hover,
.slider-next:hover {
  color: #C9A96E;
  opacity: 1;
}


/* ==========================================================================
   10. Team Section
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  border-top: 3px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.06);
  border-top: 3px solid #C9A96E;
}

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-card-image img {
  transform: scale(1.08);
}

.team-card-info {
  padding: 25px;
  text-align: center;
}

.team-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-card-info .role {
  color: #C9A96E;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ==========================================================================
   11. FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-left: 0;
}

.faq-item.active {
  border-left: 3px solid #C9A96E;
  padding-left: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1A1A1A;
  min-height: 44px;
  gap: 15px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #C9A96E;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #9A9A9A;
  flex-shrink: 0;
}

.faq-item.active .faq-question {
  color: #C9A96E;
}

.faq-item.active .faq-question::after {
  content: '\2212';
  color: #C9A96E;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #4A4A4A;
  line-height: 1.8;
}


/* ==========================================================================
   12. Contact Section
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* --- Form Styles --- */

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1A1A1A;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #FFFFFF;
  color: #1A1A1A;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #C9A96E;
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.2), inset 0 1px 3px rgba(0,0,0,0.04);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- Checkbox --- */

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #C9A96E;
}

/* --- Form Messages --- */

.form-message {
  padding: 15px;
  border-radius: 4px;
  margin-top: 15px;
  font-size: 0.95rem;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* --- Honeypot (spam protection) --- */

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Contact Info Sidebar --- */

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  color: #C9A96E;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
  color: #4A4A4A;
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  color: #C9A96E;
}


/* ==========================================================================
   13. Google Map
   ========================================================================== */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* ==========================================================================
   14. Image Gallery
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(201,169,110,0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --- Lightbox --- */

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFFFFF;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-close:hover {
  color: #C9A96E;
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #C9A96E;
}


/* ==========================================================================
   15. Blog Section
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  border-top: 3px solid transparent;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.06);
  border-top: 3px solid #C9A96E;
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #9A9A9A;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.blog-card h3 a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card h3 a:hover {
  color: #C9A96E;
}

.blog-card p {
  color: #4A4A4A;
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ==========================================================================
   16. Careers Section
   ========================================================================== */

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.career-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  border-top: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.06);
  border-top: 3px solid #C9A96E;
}

.career-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.career-card p {
  color: #4A4A4A;
  margin-bottom: 15px;
  line-height: 1.7;
}

.career-card .career-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #9A9A9A;
  margin-bottom: 15px;
}


/* ==========================================================================
   17. Application Form
   ========================================================================== */

.application-form .form-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}

.application-form .form-section:last-child {
  border-bottom: none;
}

.application-form .form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* --- File Upload --- */

.file-upload {
  border: 2px dashed #dddddd;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.file-upload:hover {
  border-color: #C9A96E;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.file-upload input[type="file"] {
  display: none;
}

.file-upload-label {
  cursor: pointer;
  color: #4A4A4A;
  font-size: 0.95rem;
}

.file-upload-label strong {
  color: #C9A96E;
  text-decoration: underline;
}


/* ==========================================================================
   18. CTA Banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #252525 100%);
  color: #F5F5F5;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
  border-radius: 2px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin-bottom: 30px;
  color: rgba(245, 245, 245, 0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   19. Breadcrumbs
   ========================================================================== */

.breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: #9A9A9A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #C9A96E;
}

.breadcrumbs span {
  color: #C9A96E;
  font-weight: 600;
}

.breadcrumbs .separator {
  margin: 0 10px;
  color: #CCCCCC;
}


/* ==========================================================================
   20. Page Hero (Inner Pages)
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #252525 100%);
  color: #F5F5F5;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 50px 50px;
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero p {
  color: #9A9A9A;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}


/* ==========================================================================
   21. Back to Top Button
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: #1A1A1A;
  color: #F5F5F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  border: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.back-to-top:hover {
  background-color: #C9A96E;
  color: #0D0D0D;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201,169,110,0.3);
}


/* ==========================================================================
   22. Partners / Client Logos
   ========================================================================== */

.partners {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.partners-track {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partners-track img {
  height: 50px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partners-track img:hover {
  opacity: 1;
  filter: grayscale(0%) sepia(20%) saturate(80%) hue-rotate(15deg);
}


/* ==========================================================================
   23. Stats / Counter Section
   ========================================================================== */

.stats-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #252525 100%);
  color: #F5F5F5;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 50px 50px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #C9A96E;
}

.stat-label {
  color: #9A9A9A;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}


/* ==========================================================================
   24. Scroll Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }


/* ==========================================================================
   25. Legal Pages (Privacy, Terms, etc.)
   ========================================================================== */

.legal-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  padding-left: 15px;
  border-left: 3px solid #C9A96E;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.legal-content p {
  margin-bottom: 15px;
  color: #4A4A4A;
  line-height: 1.9;
  letter-spacing: 0.2px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 15px;
  padding-left: 20px;
  color: #4A4A4A;
}

.legal-content li {
  margin-bottom: 10px;
  line-height: 1.9;
  list-style: disc;
}

.legal-content .last-updated {
  color: #9A9A9A;
  font-size: 0.9rem;
  margin-bottom: 30px;
}


/* ==========================================================================
   26. 404 Error Page
   ========================================================================== */

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}

.error-page-content {
  padding: 40px 20px;
}

.error-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: #C9A96E;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(201,169,110,0.2);
}

.error-page h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.error-page p {
  color: #4A4A4A;
  margin-bottom: 30px;
  font-size: 1.1rem;
}


/* ==========================================================================
   27. Footer
   ========================================================================== */

.site-footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #111111 100%);
  color: #F5F5F5;
  padding: 60px 0 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  color: #9A9A9A;
  font-size: 0.95rem;
  margin-top: 15px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #F5F5F5;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #C9A96E;
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #9A9A9A;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-col ul a:hover {
  color: #C9A96E;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #4A4A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A9A9A;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.9rem;
}

.social-links a:hover {
  background-color: #C9A96E;
  color: #0D0D0D;
  border-color: #C9A96E;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: #9A9A9A;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #9A9A9A;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #C9A96E;
}


/* ==========================================================================
   28. Focus & Accessibility
   ========================================================================== */

:focus-visible {
  outline: 2px solid #C9A96E;
  outline-offset: 2px;
}

/* Invert focus color on dark backgrounds */
.site-header :focus-visible,
.testimonials :focus-visible,
.stats-section :focus-visible,
.cta-banner :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible,
.lightbox :focus-visible {
  outline-color: #C9A96E;
}

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

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   28b. Additional Missing Classes
   ========================================================================== */

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #C9A96E;
  margin-top: 15px;
  border-radius: 2px;
}

.blog-category {
  display: inline-block;
  background: #C9A96E;
  color: #0D0D0D;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.read-more {
  display: inline-block;
  color: #C9A96E;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.5px;
}

.read-more:hover {
  color: #1A1A1A;
  padding-left: 5px;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%);
  border-radius: 50%;
  color: #C9A96E;
}

.file-name {
  font-size: 0.9rem;
  color: #C9A96E;
  margin-top: 8px;
}

/* ==========================================================================
   29. Responsive Breakpoints
   ========================================================================== */

/* --- Tablet: max-width 1024px --- */

@media (max-width: 1024px) {

  /* Navigation switches to hamburger menu */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav a {
    display: block;
    padding: 15px 0;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 15px;
    text-align: center;
    display: block;
  }

  /* Grids adjust to 2 columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Reduce section padding */
  .section-padding {
    padding: 60px 0;
  }

  /* Font size adjustments */
  .hero h1 {
    font-size: 2.8rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }
}


/* --- Mobile: max-width 768px --- */

@media (max-width: 768px) {

  /* Single column layouts */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Smaller fonts */
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Skyline divider height */
  .skyline-divider {
    height: 100px;
  }

  /* Map height */
  .map-container {
    height: 300px;
  }

  /* Gallery columns */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  /* Blog single column */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Careers single column */
  .careers-grid {
    grid-template-columns: 1fr;
  }

  /* Error page */
  .error-page h1 {
    font-size: 5rem;
  }

  .error-page h2 {
    font-size: 1.5rem;
  }

  /* Partners */
  .partners-track {
    gap: 30px;
  }

  .partners-track img {
    height: 35px;
  }

  /* Team flip cards */
  .team-card-back .bio {
    font-size: 0.8rem;
  }
}


/* --- Small Mobile: max-width 480px --- */

@media (max-width: 480px) {

  .section-padding {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .error-page h1 {
    font-size: 4rem;
  }

  .error-page h2 {
    font-size: 1.3rem;
  }

  .testimonial-slide blockquote {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .contact-info-item {
    flex-direction: column;
    gap: 8px;
  }
}


/* ==========================================================================
   30. Video Hero
   ========================================================================== */

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.80) 0%, rgba(26, 26, 26, 0.60) 50%, rgba(31, 31, 31, 0.70) 100%);
}


/* ==========================================================================
   31. Logo Image
   ========================================================================== */

.logo-img {
  height: 45px;
  width: auto;
  display: block;
}


/* ==========================================================================
   32. Team Flip Cards
   ========================================================================== */

.team-card-flip {
  perspective: 1000px;
  cursor: pointer;
}

.team-card-flip-inner {
  position: relative;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.team-card-flip.flipped .team-card-flip-inner {
  transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

.team-card-front {
  position: relative;
}

.team-card-front img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.team-card-front-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #F5F5F5;
  text-align: center;
}

.team-card-front-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-card-front-overlay .role {
  color: #C9A96E;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  background: linear-gradient(180deg, #1A1A1A 0%, #252525 100%);
  color: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
}

.team-card-back h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-card-back .role {
  color: #C9A96E;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-card-back .bio {
  color: #9A9A9A;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
  overflow-y: auto;
  max-height: 60%;
}

.team-card-back .social-links {
  margin-top: auto;
  justify-content: center;
}

.team-card-back .social-links a {
  border-color: #C9A96E;
  color: #C9A96E;
}

.team-card-back .social-links a:hover {
  background-color: #C9A96E;
  color: #0D0D0D;
}


/* ==========================================================================
   33. Page Hero with Background Image
   ========================================================================== */

.page-hero-bg {
  background-image: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(26,26,26,0.75) 50%, rgba(37,37,37,0.80) 100%), url('/images/IRM_ADDITIONAL_PAGES_HEADER.jpg');
  background-size: cover;
  background-position: center;
}


/* ==========================================================================
   34. Instagram Widget
   ========================================================================== */

.lightwidget-widget {
  width: 100%;
  border: 0;
  overflow: hidden;
}


/* ==========================================================================
   35. Partner Logo Images
   ========================================================================== */

.partner-logo {
  height: 50px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partner-logo {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .partner-logo {
    height: 28px;
  }
}


/* ==========================================================================
   36. Print Styles
   ========================================================================== */

@media print {

  .site-header,
  .site-footer,
  .nav-toggle,
  .back-to-top,
  .hero-skyline,
  .slider-arrows,
  .slider-dots,
  .social-links,
  .cta-banner,
  .nav-overlay,
  .lightbox {
    display: none !important;
  }

  body {
    color: #000000;
    background: #FFFFFF;
    font-size: 12pt;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
  }

  .page-hero {
    padding: 20px 0;
    background: #FFFFFF;
    color: #000000;
  }

  .page-hero h1,
  .section-header h2 {
    color: #000000;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    color: #000000;
  }

  .hero-bg {
    display: none;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}
