/* ============================================
   FREDDIE ATELIER - Premium Animated Website
   MOBILE-FIRST APPROACH
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors - Dark Theme */
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #1a1a1a;
  --color-primary: #d4af37;
  --color-primary-dark: #b8942f;
  --color-primary-light: #e8c84a;
  --color-text: #ffffff;
  --color-text-muted: #8d99ae;
  --color-text-dark: #666666;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-overlay: rgba(0, 0, 0, 0.7);

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}

/* Custom Scissors Cursor (Desktop Only) */
@media (min-width: 1024px) and (pointer: fine) {
  body {
    cursor: url('../images/cursor-scissors.svg') 16 16, auto;
  }

  a,
  button,
  .btn,
  .service-card,
  .gallery-item,
  .team-card,
  .nav-toggle {
    cursor: url('../images/cursor-scissors.svg') 16 16, pointer;
  }
}

body.loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Prevent horizontal scroll */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Text Utilities */
.text-accent {
  color: var(--color-primary);
}

/* ============================================
   LOADER / INTRO ANIMATION
   ============================================ */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content {
  text-align: center;
  padding: 1rem;
}

.loader-logo {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.loader-letter {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(40px) rotateX(-90deg);
  display: inline-block;
}

.loader-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(20px);
}

.loader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 1.5rem auto 0;
}

/* ============================================
   NAVIGATION - MOBILE FIRST
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.navbar-logo {
  position: relative;
  z-index: 1002;
}

.logo-img {
  height: 28px;
  width: auto;
  transition: transform var(--transition-base);
}

/* Mobile Menu Toggle (visible by default - mobile first) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 1002;
  cursor: pointer;
  background: transparent;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  padding: 100px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-menu li {
  opacity: 0;
  transform: translateX(30px);
}

.nav-menu.active li {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.4s ease;
}

.nav-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-menu.active li:nth-child(2) {
  transition-delay: 0.15s;
}

.nav-menu.active li:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-menu.active li:nth-child(4) {
  transition-delay: 0.25s;
}

.nav-menu.active li:nth-child(5) {
  transition-delay: 0.3s;
}

.nav-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::before {
  width: 100%;
}

/* Mobile CTA Hidden */
.nav-cta {
  display: none;
}

/* Mobile Menu Social Links */
.nav-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
}

.nav-menu-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nav-menu-social a {
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.nav-menu-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
}

.nav-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

/* ============================================
   HERO SECTION - MOBILE FIRST
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(10, 10, 10, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1rem 3rem;
  width: 100%;
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.title-accent {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 2.5rem;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 100%;
  margin: 0 auto 2rem;
  line-height: 1.7;
  padding: 0 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.25rem 2rem;
  font-size: 0.9rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline;
}

.stat-plus {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 50px;
  height: 1px;
  background: var(--color-border);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-text {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

/* ============================================
   SECTION STYLES - MOBILE FIRST
   ============================================ */
section {
  padding: 4rem 0;
  overflow-x: hidden;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  max-width: 100%;
}

/* ============================================
   ABOUT SECTION - MOBILE FIRST
   ============================================ */
.about {
  background: var(--color-bg);
}

.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.about-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.about-card:hover .about-card-bg {
  transform: scale(1.1);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.about-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.about-card-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-card-icon i {
  font-size: 1.25rem;
  color: var(--color-bg);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   VISION SECTION - MOBILE FIRST
   ============================================ */
.vision {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920') center/cover;
  filter: grayscale(100%);
  opacity: 0.1;
}

.vision-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-bg), transparent, var(--color-bg));
}

.vision-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.vision-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-primary);
  line-height: 0.5;
  opacity: 0.3;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.vision-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.author-line {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

/* ============================================
   SERVICES SECTION - MOBILE FIRST
   ============================================ */
.services {
  background: var(--color-bg-alt);
}

.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover .service-image-overlay {
  opacity: 1;
}

.service-image-overlay i {
  font-size: 2rem;
  color: var(--color-primary);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  padding-top: 4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
  z-index: 2;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.service-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.service-price strong {
  font-size: 1rem;
  color: var(--color-primary);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.btn-service:hover {
  gap: 0.75rem;
}

.btn-service i {
  font-size: 0.75rem;
}

/* ============================================
   TEAM SECTION - MOBILE FIRST
   ============================================ */
.team {
  background: var(--color-bg);
}

.team-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.team-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 0.75rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  transition: all var(--transition-fast);
}

.team-social a:hover {
  transform: scale(1.1);
  background: var(--color-primary-light);
}

.team-card-content {
  padding: 1.25rem;
}

.team-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.skill-tag {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.team-meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-meta i {
  color: var(--color-primary);
  width: 14px;
}

/* ============================================
   GALLERY SECTION - MOBILE FIRST
   ============================================ */
.gallery {
  background: var(--color-bg-alt);
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--color-text);
}

/* ============================================
   TESTIMONIALS SECTION - COMPLETELY NEW
   ============================================ */
.testimonials {
  background: var(--color-bg);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-container {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  text-align: center;
  height: 100%;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: var(--color-primary);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-bg);
}

.author-info {
  text-align: left;
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.125rem;
  font-weight: 600;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Testimonial Navigation */
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.testimonial-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  padding: 0;
}

.testimonial-dot.active {
  width: 24px;
  background: var(--color-primary);
}

/* ============================================
   CTA SECTION - MOBILE FIRST
   ============================================ */
.cta {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('freddie-old/images/hero-Freddie.jpg') center/cover;
  filter: brightness(0.3);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT SECTION - MOBILE FIRST
   ============================================ */
.contact {
  background: var(--color-bg-alt);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info .section-title {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.125rem;
  color: var(--color-primary);
}

.contact-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-text a {
  color: var(--color-text-muted);
}

.contact-text a:hover {
  color: var(--color-primary);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-3px);
}

.contact-map {
  position: relative;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

.map-btn {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ============================================
   FOOTER - MOBILE FIRST
   ============================================ */
.footer {
  background: var(--color-bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-section h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section ul li a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--color-primary);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 200px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-bottom a {
  color: var(--color-primary);
}

.footer-bottom i {
  color: #ef4444;
}

/* ============================================
   LIGHTBOX - MOBILE FIRST
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--color-bg-card);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
  border: none;
}

.lightbox-close:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* ============================================
   ANIMATION STATES
   ============================================ */
.anim-item {
  opacity: 0;
}

.anim-item[data-anim="fade-up"] {
  transform: translateY(30px);
}

.anim-item[data-anim="fade-down"] {
  transform: translateY(-30px);
}

.anim-item[data-anim="slide-left"] {
  transform: translateX(-40px);
}

.anim-item[data-anim="slide-right"] {
  transform: translateX(40px);
}

.anim-item[data-anim="slide-up"] {
  transform: translateY(40px);
}

.anim-item[data-anim="scale-in"] {
  transform: scale(0.9);
}

.anim-item[data-anim="zoom-in"] {
  transform: scale(0.95);
}

.anim-item.animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  section {
    padding: 6rem 0;
  }

  .loader-letter {
    font-size: 4rem;
  }

  .loader-tagline {
    font-size: 1rem;
    letter-spacing: 0.5em;
  }

  /* Hero */
  .hero-content {
    padding: 8rem 2rem 4rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
  }

  .title-line {
    font-size: 3rem;
  }

  .title-accent {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .btn {
    width: auto;
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-divider {
    width: 1px;
    height: 50px;
  }

  .hero-scroll {
    display: block;
  }

  /* Section Headers */
  .section-title {
    font-size: 2.5rem;
  }

  /* About Grid */
  .about-grid {
    flex-direction: row;
    gap: 1.5rem;
  }

  .about-card {
    flex: 1;
    height: 400px;
  }

  /* Vision */
  .vision-quote-mark {
    font-size: 8rem;
  }

  .vision-quote {
    font-size: 1.75rem;
  }

  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Team Grid */
  .team-grid {
    flex-direction: row;
    max-width: 900px;
    margin: 0 auto;
  }

  .team-card {
    flex: 1;
  }

  .team-card-image {
    height: 320px;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  /* Contact Grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-map {
    height: 100%;
    min-height: 400px;
  }

  /* Footer */
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  /* CTA */
  .cta h2 {
    font-size: 2.5rem;
  }
}

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  /* Navbar Desktop */
  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    gap: 2rem;
    transform: none;
    align-items: center;
  }

  .nav-menu li {
    opacity: 1;
    transform: none;
  }

  .nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    border-bottom: none;
  }

  .nav-menu-footer {
    display: none;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
  }

  .nav-cta:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .nav-cta i {
    font-size: 1rem;
  }

  /* Hero */
  .title-line {
    font-size: 4rem;
  }

  .title-accent {
    font-size: 5rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* About Cards Animation */
  .about-card {
    height: 450px;
    transform-style: preserve-3d;
    perspective: 1000px;
  }
}

/* ============================================
   LARGE DESKTOP BREAKPOINT (1400px+)
   ============================================ */
@media (min-width: 1400px) {
  .title-line {
    font-size: 4.5rem;
  }

  .title-accent {
    font-size: 6rem;
  }

  .section-title {
    font-size: 3rem;
  }
}