/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0 20px 0;
}

/* Extra Responsive for very small devices */
@media (max-width: 400px) {
  html, body {
    font-size: 13px;
    min-width: 100vw;
    overflow-x: hidden;
  }
  .main-slider, .slide, .slide-content, .slider-nav, .slide-bg, .gallery-grid, .portfolio-masonry, .portfolio-showcase, .contact-layout, .contact-form, .contact-info {
    max-width: 100vw !important;
    min-width: 100vw !important;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .slide-content {
    padding: 8px 2vw 8px 2vw !important;
    font-size: 0.95rem;
  }
  .slider-nav {
    padding: 0 1vw !important;
  }
  .gallery-grid img, .portfolio-item img {
    height: 40px !important;
    min-height: 30px !important;
    border-radius: 8px !important;
  }
  .btn-primary, .btn-secondary, .filter-btn-modern {
    font-size: 13px !important;
    padding: 7px 10px !important;
  }
  .hero-title, .section-title, .portfolio-title-modern {
    font-size: 1.1rem !important;
  }
  .slide-arrows, .slide-counter {
    font-size: 1rem !important;
  }
  .contact-form input, .contact-form select, .contact-form textarea {
    font-size: 13px !important;
    padding: 7px 8px !important;
  }
  .contact-card h4, .contact-card p {
    font-size: 0.95rem !important;
  }
  .gallery-lightbox-img {
    max-width: 98vw !important;
    max-height: 30vh !important;
  }
}
.gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(212,175,55,0.18), 0 4px 24px rgba(0,0,0,0.18);
}
/* Lightbox */
.gallery-lightbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10,10,10,0.96);
  z-index: 9999;
  transition: opacity 0.3s;
}
.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.18), 0 4px 24px rgba(0,0,0,0.18);
  margin-bottom: 18px;
}
.gallery-close {
  position: absolute;
  top: 24px;
  right: 38px;
  color: var(--primary-gold);
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.gallery-close:hover {
  color: #fff;
}
.gallery-lightbox-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--primary-gold);
  font-size: 1.2rem;
  font-weight: 600;
}
.gallery-arrow {
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0 12px;
  transition: color 0.2s;
}
.gallery-arrow:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .gallery-grid img {
    height: 90px;
  }
  .gallery-lightbox-img {
    max-width: 98vw;
    max-height: 50vh;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    max-width: 98vw;
  }
  .gallery-grid img {
    height: 60px;
  }
  .gallery-lightbox-img {
    max-width: 98vw;
    max-height: 40vh;
  }
  .gallery-close {
    top: 10px;
    right: 16px;
    font-size: 2rem;
  }
}
/* Modern Portfolio Slide Styles */
.portfolio-header-modern {
  text-align: center;
  margin-bottom: 18px;
}
.portfolio-title-modern {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--primary-gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.portfolio-title-modern i {
  color: var(--primary-gold-light);
  font-size: 1.3em;
}
.portfolio-subtitle-modern {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
}
/* Portfolio Filters Modern - Always visible and on top */
.portfolio-filters-modern {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
  background: rgba(10,10,10,0.92);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.08);
  padding: 10px 0 10px 0;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.filter-btn-modern {
  padding: 8px 20px;
  background: none;
  border: 1.5px solid var(--primary-gold-subtle);
  color: var(--text-secondary);
  border-radius: 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  outline: none;
}
.filter-btn-modern.active,
.filter-btn-modern:hover {
  background: var(--primary-gold-subtle);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}
@media (max-width: 600px) {
  .portfolio-filters-modern {
    gap: 6px;
    margin-bottom: 14px;
    padding: 7px 0 7px 0;
    max-width: 98vw;
  }
  .filter-btn-modern {
    font-size: 0.95rem;
    padding: 7px 10px;
  }
}
.portfolio-masonry {
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.portfolio-card {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(212,175,55,0.08), 0 2px 12px rgba(0,0,0,0.13);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, opacity 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  cursor: pointer;
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  animation: mosaicIn 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes mosaicIn {
  0% { opacity: 0; transform: scale(0.85) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: filter 0.4s;
}
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(212,175,55,0.18), 0 4px 24px rgba(0,0,0,0.18);
  z-index: 2;
}
.portfolio-card:hover img {
  filter: brightness(0.8) blur(1px);
}
.portfolio-card-info {
  padding: 18px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-card-info h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin: 0 0 2px 0;
  font-family: 'Playfair Display', serif;
}
.portfolio-card-info .project-type {
  color: var(--text-light);
  font-size: 0.92em;
  font-weight: 500;
}
@media (max-width: 900px) {
  .portfolio-masonry {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }
  .portfolio-card img {
    height: 130px;
  }
}
@media (max-width: 600px) {
  .portfolio-header-modern {
    margin-bottom: 10px;
  }
  .portfolio-title-modern {
    font-size: 1.2rem;
    gap: 6px;
  }
  .portfolio-subtitle-modern {
    font-size: 0.95rem;
  }
  .portfolio-filters-modern {
    gap: 6px;
    margin-bottom: 14px;
  }
  .portfolio-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 98vw;
  }
  .portfolio-card img {
    height: 90px;
  }
  .portfolio-card-info {
    padding: 10px 7px 8px 7px;
    gap: 2px;
  }
  .portfolio-card-info h4 {
    font-size: 0.95rem;
  }
}
}
.portfolio-card {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(212,175,55,0.08), 0 2px 12px rgba(0,0,0,0.13);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: filter 0.4s;
}
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(212,175,55,0.18), 0 4px 24px rgba(0,0,0,0.18);
}
.portfolio-card:hover img {
  filter: brightness(0.8) blur(1px);
}
.portfolio-card-info {
  padding: 18px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portfolio-card-info h4 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin: 0 0 2px 0;
  font-family: 'Playfair Display', serif;
}
.portfolio-card-info .project-type {
  color: var(--text-light);
  font-size: 0.92em;
  font-weight: 500;
}
@media (max-width: 900px) {
  .portfolio-masonry {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
  }
  .portfolio-card img {
    height: 130px;
  }
}
@media (max-width: 600px) {
  .portfolio-header-modern {
    margin-bottom: 10px;
  }
  .portfolio-title-modern {
    font-size: 1.2rem;
    gap: 6px;
  }
  .portfolio-subtitle-modern {
    font-size: 0.95rem;
  }
  .portfolio-filters-modern {
    gap: 6px;
    margin-bottom: 14px;
  }
  .portfolio-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 98vw;
  }
  .portfolio-card img {
    height: 90px;
  }
  .portfolio-card-info {
    padding: 10px 7px 8px 7px;
    gap: 2px;
  }
  .portfolio-card-info h4 {
    font-size: 0.95rem;
  }
}
/* Fine Spaces - Fullscreen Slider Sections */

:root {
    --primary-gold: #c0a571;
    --primary-gold-light: #e2cfa0;
    --primary-gold-dark: #a88b5a;
    --primary-gold-subtle: rgba(192, 165, 113, 0.15);
    --gold-glow: rgba(192, 165, 113, 0.6);
    --bg-primary: #0A0A0A;
    --bg-secondary: #1A1A1A;
    --bg-accent: #000000;
    --bg-card: rgba(26, 26, 26, 0.8);
    --bg-overlay: rgba(0, 0, 0, 0.9);
    --text-primary: #fff;
    --text-secondary: #ccc;
    --text-light: #999;
    --text-gold: #c0a571;
    --shadow-glow: 0 0 30px rgba(192, 165, 113, 0.3);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.7);
    --blur: blur(20px);
    --transition-normal: 0.5s cubic-bezier(.4,0,.2,1);
    --border-radius: 16px;
    --header-height: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100vw; height: 100vh; overflow: hidden; }
body {
    font-family: 'Inter', 'Playfair Display', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Main Slider Container */
.main-slider {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: 1;
}

/* Slides */
.slides-container {
    width: 100vw; height: 100vh;
    position: relative;
}

/* Responsive Fullscreen Slide */
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    min-width: 100vw; min-height: 100vh;
    max-width: 100vw; max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    background: transparent;
    transition: none;
    box-sizing: border-box;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
    animation: fadeInSlide 0.7s cubic-bezier(.4,0,.2,1);
}
.slide.slide-in-left {
    animation: slideInLeft 0.7s cubic-bezier(.4,0,.2,1);
    opacity: 1;
    z-index: 11;
}
.slide.slide-in-right {
    animation: slideInRight 0.7s cubic-bezier(.4,0,.2,1);
    opacity: 1;
    z-index: 11;
}
.slide.slide-out-left {
    animation: slideOutLeft 0.7s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    z-index: 9;
}
.slide.slide-out-right {
    animation: slideOutRight 0.7s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    z-index: 9;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: scale(1.04) translateY(40px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px) scale(0.98); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px) scale(0.98); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(-60px) scale(0.98); }
}
@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(60px) scale(0.98); }
}


/* Slide Backgrounds */
.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 1;
    overflow: hidden;
}
.slide-bg img,
.slide-bg .bg-image {
    width: 100vw; height: 100vh; min-width: 100vw; min-height: 100vh; max-width: 100vw; max-height: 100vh;
    object-fit: cover;
    filter: brightness(0.32) blur(2px) grayscale(0.1);
    transition: filter 1s;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}
.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(135deg,rgba(0,0,0,0.82),rgba(212,175,55,0.10));
    z-index: 2;
    pointer-events: none;
}

/* Slide Content */
.slide-content {
    position: absolute;
    z-index: 3;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    min-width: 100vw; min-height: 100vh;
    max-width: 100vw; max-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0,0,0,0.18);
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(255,255,255,0.08);
}

/* Custom Scrollbar for Slide Content */
.slide-content::-webkit-scrollbar {
    width: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}
.slide-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: 8px;
    box-shadow: 0 0 8px var(--gold-glow);
}
.slide-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(0,0,0,0.12);
}

/* Custom Scrollbar for Slide Content */
.slide-content::-webkit-scrollbar {
    width: 10px;
    background: rgba(0,0,0,0.12);
    border-radius: 8px;
}
.slide-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: 8px;
    box-shadow: 0 0 8px var(--gold-glow);
}
.slide-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Navigation Header */
.slider-nav {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: var(--header-height);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    background: rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 20;
}
.nav-brand {
    display: flex; 
    align-items: center; 
    gap: 12px;
    justify-content: center;
    padding: 5px;
}

.brand-logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(192, 165, 113, 0.5));
}

.brand-logo:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(192, 165, 113, 0.8)) brightness(1.2);
}

.brand-diamond {
    width: 32px; height: 32px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-gold-light));
    transform: rotate(45deg);
    border-radius: 8px;
    box-shadow: 0 0 20px var(--gold-glow);
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}
.nav-dots {
    display: flex; gap: 16px;
}
.nav-dot {
    background: none; border: none; outline: none;
    display: flex; flex-direction: column; align-items: center;
    cursor: pointer; transition: color 0.3s;
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0.7;
    position: relative;
}
.nav-dot.active, .nav-dot:focus {
    color: var(--primary-gold);
    opacity: 1;
}
.dot-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.dot-label {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}
.slide-counter {
    display: flex; align-items: center; gap: 6px;
    color: var(--primary-gold);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}
.counter-separator {
    width: 18px; height: 2px; background: var(--primary-gold-light); border-radius: 2px;
}

/* Slide Arrows */
.slide-arrows {
    position: absolute; top: 50%; left: 0; width: 100vw;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 15;
    pointer-events: none;
}
.arrow-btn {
    background: rgba(0,0,0,0.5);
    border: none; color: var(--primary-gold);
    font-size: 2rem; border-radius: 50%;
    width: 48px; height: 48px;
    margin: 0 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    cursor: pointer; pointer-events: auto;
    transition: background 0.3s, transform 0.3s;
}
.arrow-btn:hover {
    background: var(--primary-gold-light);
    color: #222;
    transform: scale(1.08);
}

/* Progress Bar */
.progress-indicator {
    position: absolute; bottom: 0; left: 0; width: 100vw; height: 4px;
    background: rgba(255,255,255,0.05);
    z-index: 30;
}
.progress-fill {
    width: 0; height: 100%; background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    transition: width 0.7s cubic-bezier(.4,0,.2,1);
}

/* Floating Shapes (Decorative) */
.bg-animation {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0;
}
.floating-shapes {
    position: absolute; width: 100vw; height: 100vh; top: 0; left: 0; pointer-events: none;
}
.shape {
    position: absolute; border-radius: 50%; opacity: 0.18;
    filter: blur(2px);
    animation: floatShape 12s ease-in-out infinite alternate;
}
.shape-1 { width: 180px; height: 180px; top: 10%; left: 8%; background: var(--primary-gold-subtle); animation-delay: 0s; }
.shape-2 { width: 120px; height: 120px; top: 70%; left: 12%; background: var(--primary-gold-light); animation-delay: 2s; }
.shape-3 { width: 90px; height: 90px; top: 30%; right: 10%; background: var(--primary-gold); animation-delay: 4s; }
.shape-4 { width: 140px; height: 140px; bottom: 12%; right: 18%; background: var(--primary-gold-dark); animation-delay: 6s; }
.shape-5 { width: 70px; height: 70px; bottom: 20%; left: 30%; background: var(--primary-gold-light); animation-delay: 8s; }
@keyframes floatShape {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.08); }
    100% { transform: translateY(0) scale(1); }
}
.gradient-overlay {
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(ellipse at 60% 40%,rgba(212,175,55,0.08),transparent 70%), linear-gradient(135deg,rgba(0,0,0,0.7),rgba(26,26,26,0.7));
    z-index: 1;
}

/* Hero Slide */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 1px;
}
.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroTitleIn 1s forwards;
}
.title-word.gold { color: var(--primary-gold); text-shadow: var(--shadow-glow); }
.title-word[data-delay] { animation-delay: attr(data-delay); }
@keyframes heroTitleIn {
    to { opacity: 1; transform: translateY(0); }
}
.hero-subtitle {
    font-size: 1.3rem; color: var(--primary-gold); font-weight: 600; margin-bottom: 12px;
    opacity: 0; animation: fadeIn 1s 0.6s forwards;
}
.hero-description {
    font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 30px;
    opacity: 0; animation: fadeIn 1s 0.8s forwards;
}
.hero-features {
    display: flex; justify-content: center; gap: 14px; margin-bottom: 30px; flex-wrap: wrap;
    opacity: 0; animation: fadeIn 1s 1s forwards;
}
.feature-tag {
    display: flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 18px; border-radius: 22px; border: 1px solid rgba(212,175,55,0.25);
    font-size: 15px; color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(212,175,55,0.08);
    transition: background 0.3s;
}
.feature-tag:hover { background: rgba(212,175,55,0.22); }
.hero-actions {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.btn-primary, .btn-secondary {
    padding: 13px 28px; border-radius: 10px; font-weight: 700; font-size: 17px;
    display: flex; align-items: center; gap: 10px; transition: all 0.3s; cursor: pointer; border: none; text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light)); color: var(--bg-primary); box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }
.btn-secondary {
    background: rgba(255,255,255,0.12); color: var(--text-primary); border: 2px solid rgba(212,175,55,0.3); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(212,175,55,0.13); border-color: var(--primary-gold); color: var(--primary-gold); }

/* Services Slide */
.services-showcase {
    display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; margin-top: 30px;
}
.service-card {
    background: rgba(0,0,0,0.6); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border-radius: 16px; border: 1px solid rgba(212,175,55,0.18);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    padding: 32px 24px; min-width: 220px; max-width: 270px;
    text-align: center; transition: transform 0.4s, box-shadow 0.4s;
    opacity: 0; transform: translateY(40px) scale(0.98);
    animation: serviceCardIn 1s forwards;
}
.service-card[data-delay] { animation-delay: attr(data-delay); }
.service-card:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 8px 32px rgba(212,175,55,0.13); border-color: var(--primary-gold); }
.service-icon { font-size: 2.2rem; color: var(--primary-gold); margin-bottom: 14px; animation: iconPulse 2s infinite; }
.service-card h3 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 10px; font-weight: 700; }
.service-card p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 12px; }
.service-features { font-size: 0.85rem; color: var(--text-gold); display: flex; flex-direction: column; gap: 2px; }
@keyframes serviceCardIn { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Portfolio Slide */
.portfolio-filters {
    display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap;
}
.filter-btn {
    padding: 7px 18px; background: transparent; border: 1px solid rgba(212,175,55,0.3); color: var(--text-secondary);
    border-radius: 15px; font-size: 13px; cursor: pointer; transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { background: rgba(212,175,55,0.13); color: var(--primary-gold); border-color: var(--primary-gold); }
.portfolio-showcase {
    display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}
.portfolio-item {
    position: relative; border-radius: 14px; overflow: hidden; width: 220px; height: 160px; box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    transition: transform 0.4s, box-shadow 0.4s; cursor: pointer; background: #181818;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.4s; }
.portfolio-item:hover img { filter: brightness(0.7) blur(1px); }
.portfolio-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top,rgba(0,0,0,0.8),transparent);
    display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity 0.4s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info h4 { color: var(--text-primary); font-size: 1rem; margin-bottom: 4px; }
.portfolio-info p { color: var(--primary-gold); font-size: 0.85rem; }
.project-type { font-size: 0.7rem; color: var(--text-light); }

/* Contact Slide */
.contact-layout {
    display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: flex-start; margin-top: 30px;
}
.contact-info {
    display: flex; flex-direction: column; gap: 18px; min-width: 220px; max-width: 260px;
}
.contact-card {
    display: flex; align-items: flex-start; gap: 12px; background: rgba(212,175,55,0.08);
    border-radius: 10px; padding: 14px 18px; color: var(--text-primary); box-shadow: 0 2px 10px rgba(212,175,55,0.05);
}
.contact-card i { color: var(--primary-gold); font-size: 1.2rem; margin-top: 2px; }
.contact-details h4 { color: var(--primary-gold); font-size: 1rem; margin: 0 0 2px 0; font-weight: 700; }
.contact-details p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.contact-form {
    background: rgba(10,10,10,0.82);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1.5px solid var(--primary-gold-subtle);
    box-shadow: 0 8px 32px 0 rgba(212,175,55,0.10), 0 2px 12px 0 rgba(0,0,0,0.18);
    padding: 36px 28px 28px 28px;
    min-width: 270px;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    transition: box-shadow 0.4s, border 0.4s, background 0.4s;
    position: relative;
    overflow: visible;
}
.contact-form:hover, .contact-form:focus-within {
    box-shadow: 0 12px 40px 0 rgba(212,175,55,0.18), 0 4px 24px 0 rgba(0,0,0,0.22);
    border-color: var(--primary-gold);
    background: rgba(20,20,20,0.92);
}
.contact-form h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(212,175,55,0.08);
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(0,0,0,0.55);
    border: 1.5px solid rgba(212,175,55,0.22);
    color: var(--text-primary);
    padding: 13px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border 0.3s, box-shadow 0.3s, background 0.3s;
    flex: 1 1 0;
    outline: none;
    box-shadow: 0 1px 6px rgba(212,175,55,0.04);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 18px 0 rgba(212,175,55,0.18);
    background: rgba(20,20,20,0.85);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--text-light);
    opacity: 0.85;
    font-size: 0.98em;
}
.contact-form button {
    margin-top: 14px;
    align-self: center;
    min-width: 180px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212,175,55,0.10);
    padding: 13px 32px;
}
.contact-form button .fab, .contact-form button .fas {
    font-size: 1.2em;
    margin-right: 7px;
}
.contact-form .form-row > * {
    min-width: 0;
}
.contact-form textarea {
    min-height: 90px;
    resize: vertical;
    max-height: 220px;
}
.contact-form .form-row {
    flex-direction: row;
}
.contact-form .form-row input {
    flex: 1 1 45%;
}
.contact-form .form-row input:not(:last-child) {
    margin-right: 8px;
}
.contact-form .form-row input[type="email"] {
    direction: ltr;
}
.contact-form select {
    cursor: pointer;
}
.contact-form select:invalid {
    color: var(--text-light);
    opacity: 0.8;
}
.contact-form select option {
    color: #222;
}
.contact-form .form-group {
    margin-bottom: 0;
}
.contact-form .form-row {
    margin-bottom: 0;
}
.contact-form .form-row:last-child {
    margin-bottom: 0;
}
.contact-form .form-row input,
.contact-form .form-row select {
    margin-bottom: 0;
}
.contact-form .form-row input:only-child {
    margin-right: 0;
}
.contact-form .form-row input[type="tel"] {
    direction: ltr;
}
.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="email"],
.contact-form .form-row input[type="tel"] {
    text-align: left;
}
.contact-form .form-row input[type="text"]::placeholder,
.contact-form .form-row input[type="email"]::placeholder,
.contact-form .form-row input[type="tel"]::placeholder {
    text-align: left;
}
.contact-form .form-row input:required,
.contact-form textarea:required {
    border-left: 3px solid var(--primary-gold-light);
}
.contact-form .form-row input:invalid,
.contact-form textarea:invalid {
    border-color: #b94a48;
}
.contact-form .form-row input:valid,
.contact-form textarea:valid {
    border-color: var(--primary-gold);
}
.contact-form .form-row input:disabled,
.contact-form textarea:disabled {
    background: #222;
    color: #888;
    opacity: 0.7;
}
.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="email"],
.contact-form .form-row input[type="tel"] {
    font-size: 1em;
}
.contact-form .form-row input[type="text"]::-webkit-input-placeholder,
.contact-form .form-row input[type="email"]::-webkit-input-placeholder,
.contact-form .form-row input[type="tel"]::-webkit-input-placeholder {
    color: var(--text-light);
    opacity: 0.85;
}
.contact-form .form-row input[type="text"]:-ms-input-placeholder,
.contact-form .form-row input[type="email"]:-ms-input-placeholder,
.contact-form .form-row input[type="tel"]:-ms-input-placeholder {
    color: var(--text-light);
    opacity: 0.85;
}
.contact-form .form-row input[type="text"]::placeholder,
.contact-form .form-row input[type="email"]::placeholder,
.contact-form .form-row input[type="tel"]::placeholder {
    color: var(--text-light);
    opacity: 0.85;
}
}
.contact-form h3 { color: var(--primary-gold); font-size: 1.2rem; margin-bottom: 10px; }
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: flex; gap: 10px; }
.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(0,0,0,0.4); border: 1px solid rgba(212,175,55,0.3); color: var(--text-primary);
    padding: 10px; border-radius: 8px; font-size: 14px; transition: all 0.3s; flex: 1;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--primary-gold); box-shadow: 0 0 15px rgba(212,175,55,0.2);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-light); }
.contact-form button { margin-top: 10px; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes iconPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.1);} }

/* Responsive */
@media (max-width: 1200px) {
    .slide-content {
        width: 100vw; height: 100vh;
        min-width: 100vw; min-height: 100vh;
        max-width: 100vw; max-height: 100vh;
        padding: 0;
    }
}
@media (max-width: 900px) {
    .slide-content {
        width: 100vw; height: 100vh;
        min-width: 100vw; min-height: 100vh;
        max-width: 100vw; max-height: 100vh;
        padding: 0;
    }
    .slide {
        min-width: 100vw; min-height: 100vh; max-width: 100vw; max-height: 100vh;
    }
    .services-showcase, .portfolio-showcase, .contact-layout { flex-direction: column; align-items: center; }
    .service-card, .portfolio-item, .contact-form, .contact-info { min-width: 180px; max-width: 100%; }
}
@media (max-width: 600px) {
    .main-slider {
        padding-top: 60px;
    }
    .slide-bg {
        margin-top: 40px;
    }
    .slider-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 100;
    }
    .slide-content.hero-content {
        margin-top: 18px;
    }
    .slider-nav { padding: 0 2vw; }
    .slide-content {
        width: 100vw; height: 100vh;
        min-width: 100vw; min-height: 100vh;
        max-width: 100vw; max-height: 100vh;
        padding: 0;
    }
    .btn-primary, .btn-secondary { font-size: 15px; padding: 10px 16px; }
    .hero-title { font-size: 2rem; }
    .slide {
        min-width: 100vw; min-height: 100vh; max-width: 100vw; max-height: 100vh;
    }
}
@media (max-width: 400px) {
    .slide-content {
        width: 100vw; height: 100vh;
        min-width: 100vw; min-height: 100vh;
        max-width: 100vw; max-height: 100vh;
        padding: 0;
        font-size: 0.95rem;
    }
    .slide {
        min-width: 100vw; min-height: 100vh; max-width: 100vw; max-height: 100vh;
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    height: 100vh;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loader-diamond {
    /* Keep for backwards compatibility but hide */
    display: none;
}

/* New loader logo styles - moved here from top */
.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: loadingLogoSpin 2s linear infinite, loadingLogoPulse 1.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(192, 165, 113, 0.6));
}

@keyframes loadingLogoSpin {
    0% { 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        transform: rotate(90deg) scale(1.1);
    }
    50% { 
        transform: rotate(180deg) scale(1);
    }
    75% { 
        transform: rotate(270deg) scale(1.1);
    }
    100% { 
        transform: rotate(360deg) scale(1);
    }
}

@keyframes loadingLogoPulse {
    0% { 
        filter: drop-shadow(0 0 20px rgba(192, 165, 113, 0.6)) brightness(1);
        opacity: 0.8;
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(192, 165, 113, 1)) brightness(1.3);
        opacity: 1;
    }
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

@keyframes spinGlow {
    0%, 100% { transform: rotate(45deg) scale(1); box-shadow: var(--shadow-glow); }
    50% { transform: rotate(45deg) scale(1.1); box-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animated Logo in Header */
.animated-logo {
  animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 10px rgba(192, 165, 113, 0.5));
  transition: all 0.3s ease;
}

.animated-logo:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(192, 165, 113, 0.8)) brightness(1.2);
}

@keyframes logoFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-8px) rotate(2deg); 
  }
}

@keyframes logoGlow {
  0% { 
    filter: drop-shadow(0 0 10px rgba(192, 165, 113, 0.5)) brightness(1);
  }
  100% { 
    filter: drop-shadow(0 0 15px rgba(192, 165, 113, 0.8)) brightness(1.1);
  }
}

/* Loading Screen Logo Animation */
.loader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: loadingLogoSpin 2s linear infinite, loadingLogoPulse 1.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(192, 165, 113, 0.6));
}

@keyframes loadingLogoSpin {
  0% { 
    transform: rotate(0deg) scale(1);
  }
  25% { 
    transform: rotate(90deg) scale(1.1);
  }
  50% { 
    transform: rotate(180deg) scale(1);
  }
  75% { 
    transform: rotate(270deg) scale(1.1);
  }
  100% { 
    transform: rotate(360deg) scale(1);
  }
}

@keyframes loadingLogoPulse {
  0% { 
    filter: drop-shadow(0 0 20px rgba(192, 165, 113, 0.6)) brightness(1);
    opacity: 0.8;
  }
  100% { 
    filter: drop-shadow(0 0 30px rgba(192, 165, 113, 1)) brightness(1.3);
    opacity: 1;
  }
}

/* Enhanced loader progress animation */
.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(192, 165, 113, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(192, 165, 113, 0.8) 50%, 
    var(--primary-gold) 100%);
  width: 0%;
  animation: progressLoad 3s ease-out forwards, progressGlow 1s ease-in-out infinite alternate;
  border-radius: 2px;
}

@keyframes progressLoad {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes progressGlow {
  0% { 
    box-shadow: 0 0 5px rgba(192, 165, 113, 0.5);
  }
  100% { 
    box-shadow: 0 0 15px rgba(192, 165, 113, 0.9);
  }
}

/* ...existing code... */
