/* ============================================
   OrdoSaxum - Main Stylesheet
   Inspired by Anatolia Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary-bg: #ffffff;
  --primary-text: #1a1a1a;
  --secondary-text: #666666;
  --accent-gray: #d9d9d9;
  --dark-bg: #2a2a2a;
  --border-color: #e0e0e0;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--primary-text);
  background-color: var(--primary-bg);
  line-height: 1.7;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 300;
}

/* Main Content Wrapper */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
  padding: 0;
}

.navbar-content {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000000;
  padding: 20px 0 15px 0;
  z-index: 1001;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #000000;
  text-transform: uppercase;
}

.logo-icon {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 400;
  transition: all 0.2s ease;
  border-bottom: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: #666666;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.hamburger:active {
  opacity: 0.7;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #000000;
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 180px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-item:hover .dropdown-menu {
  max-height: 500px;
  opacity: 1;
}

.dropdown-item {
  padding: 12px 18px;
  color: #000000;
  text-decoration: none;
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000000;
}

/* Mobile Menu Active State */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  background: #f5f5f5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16.67%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  background: #2a2a2a; /* Fallback color while loading */
  display: block;
}

/* Ensure video displays even when paused on mobile */
.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #ffffff;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 80px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: none;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  max-width: 600px;
}

.hero-cta {
  display: inline-block;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 11px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: transparent;
  font-weight: 400;
}

.hero-cta:hover {
  opacity: 0.7;
}

.hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   SLAB INSPIRATION SECTION
   ============================================ */

.slab-section {
  padding: 80px 40px;
  background-color: #ffffff;
}

.slab-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.slab-content {
  max-width: 100%;
  margin: 0 0 60px 0;
  text-align: left;
}

.slab-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.slab-description {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: #2a2a2a;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.slab-image {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.slab-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 800px;
  object-fit: cover;
}

.slab-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.3);
}

.slab-caption {
  font-size: 11px;
  color: #1a1a1a;
  margin-top: 15px;
  font-weight: 300;
}

/* Slab Quote Overlay */
.slab-quote {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 10;
  padding: 2vw;
  max-width: 80%;
}

.slab-quote.visible {
  opacity: 1;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5vw;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 300;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

/* ============================================
   CTA SECTION (Our Products and Services)
   ============================================ */

.cta-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fafafa 100%);
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 70px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.cta-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  color: #999999;
  margin: -50px auto 60px;
  letter-spacing: 2.5px;
  line-height: 1.6;
  max-width: 600px;
  font-style: normal;
  text-transform: uppercase;
}

.cta-subtitle-link {
  color: #666666;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid #666666;
  transition: all 0.3s ease;
  font-style: normal;
  letter-spacing: 2.5px;
}

.cta-subtitle-link:hover {
  color: #333333;
  border-bottom-color: #333333;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cta-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cta-card:hover .cta-image img {
  transform: scale(1.1);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.cta-card:hover .cta-overlay {
  opacity: 0.8;
}

.cta-content {
  padding: 30px 25px;
  text-align: center;
}

.cta-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.cta-description {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #777777;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* Responsive CTA Section */
@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 40px;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .cta-subtitle {
    font-size: 13px;
    margin: -25px auto 45px;
    padding: 0 10px;
  }

  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cta-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 50px 20px;
  }

  .cta-subtitle {
    font-size: 12px;
    margin: -20px auto 40px;
  }
  
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-image {
    height: 200px;
  }
  
  .cta-content {
    padding: 20px 15px;
  }
  
  .cta-card-title {
    font-size: 16px;
  }
  
  .cta-description {
    font-size: 12px;
  }
}

/* ============================================
   SLAB VARIATIONS CAROUSEL
   ============================================ */

.carousel-section {
  padding: 80px 80px;
  background-color: #ffffff;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-slide {
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  max-width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-image {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #e8e8e8;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-placeholder {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 20px;
}

.carousel-label {
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  padding: 15px 10px;
  color: #666666;
  font-style: italic;
  letter-spacing: 1px;
  background: transparent;
  margin: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 48px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  line-height: 1;
  opacity: 1;
}

.carousel-arrow:hover {
  color: #666666;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-arrow svg {
  color: #1a1a1a;
}

/* ============================================
   STONE MASONRY ANIMATION SECTION
   ============================================ */

.masonry-animation-section {
  padding: 100px 80px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.masonry-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.masonry-content {
  margin-bottom: 60px;
}

.masonry-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 18px;
  text-transform: none;
  line-height: 1.2;
}

.masonry-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 300;
  color: #999999;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.stone-blocks-animation {
  position: relative;
  height: 600px;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}

#canvas3d {
  width: 100%;
  height: 100%;
  display: block;
}

.stone-block {
  position: absolute;
  background: linear-gradient(135deg, #d4d4d4 0%, #8a8a8a 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stone-block.animate {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.stone-block::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

.masonry-text {
  max-width: 800px;
  margin: 0 auto 80px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1a1a1a;
  font-weight: 300;
}

/* Carousel inside Masonry Section */
.masonry-animation-section .carousel-container {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ============================================
   PRODUCT SHOWCASE SECTION
   ============================================ */

.section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background-color: #e8e8e8;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  opacity: 0.85;
}

.product-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background-color: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-label {
  padding: 15px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
}

.product-placeholder {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  letter-spacing: 1.5px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.featured-text h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.featured-text p {
  color: var(--secondary-text);
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.featured-image {
  background-color: var(--accent-gray);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

/* ============================================
   COLLECTIONS SECTION
   ============================================ */

.collections {
  background-color: #f5f5f5;
  padding: 80px 40px;
}

.collections-container {
  max-width: 1400px;
  margin: 0 auto;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.collection-image {
  width: 100%;
  height: 100%;
  background-color: var(--accent-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.collection-item:hover .collection-image {
  transform: scale(1.05);
}

.collection-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--primary-bg);
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #ffffff;
  color: #4a4a4a;
  border-top: 1px solid #e0e0e0;
  padding: 25px 0;
  margin-top: auto;
}

.footer-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.footer-copyright {
  color: #4a4a4a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-copyright:hover {
  color: #000000;
}

.footer-section {
  display: flex;
  gap: 0;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer-link {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #000000;
}

.footer-contact {
  font-size: 11px;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: left;
  margin-left: auto;
  font-weight: 400;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #000000;
}

.footer-contact strong {
  color: #000000;
  font-weight: 600;
}

.footer-contact strong a {
  color: #000000;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .navbar-content {
    padding: 0 20px;
  }

  .navbar-logo {
    padding: 15px 0 10px 0;
  }

  .logo-text {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    animation: slideDown 0.3s ease;
  }

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

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 16px 20px;
    font-size: 13px;
    display: block;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
  }

  .nav-link:active {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.02);
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .nav-item.active .dropdown-menu {
    max-height: 500px;
    opacity: 1;
  }

  .hero {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero-content {
    padding: 40px 20px;
    max-width: 100%;
  }

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

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

  .section {
    padding: 50px 20px;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  /* Slab Section Responsive */
  .slab-section {
    padding: 50px 20px;
  }

  .slab-container {
    padding: 0 20px;
  }

  .slab-content {
    margin-bottom: 40px;
  }

  .slab-title {
    font-size: 1.8rem;
  }

  .cta-title,
  .masonry-title,
  .furniture-title {
    font-size: 1.8rem;
  }

  .slab-description {
    font-size: 13px;
  }

  .slab-img {
    object-fit: contain;
    max-height: none;
    height: auto;
  }

  /* Carousel Responsive */
  .carousel-section {
    padding: 50px 20px;
  }

  .carousel-wrapper {
    padding: 0 20px;
  }

  .carousel-track {
    gap: 15px;
  }

  .carousel-slide {
    min-width: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  
  .carousel-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-track-container::-webkit-scrollbar {
    display: none;
  }
  
  .carousel-arrow {
    display: none;
  }

  .masonry-animation-section .carousel-container {
    margin-top: 40px;
    padding-top: 40px;
  }

  .footer-content {
    flex-direction: column;
    padding: 20px 20px;
    text-align: center;
    gap: 15px;
  }

  .footer-section {
    flex-direction: column;
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-contact {
    text-align: center;
    margin-left: 0;
  }
}

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

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

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

  .nav-menu {
    flex-direction: column;
  }

  .nav-link {
    padding: 15px 10px;
  }

  .carousel-wrapper {
    padding: 0 15px;
  }

  .carousel-track {
    gap: 12px;
  }

  .carousel-slide {
    min-width: 100%;
    max-width: 100%;
  }

  .masonry-text {
    margin-bottom: 50px;
  }

  .masonry-animation-section .carousel-container {
    margin-top: 30px;
    padding-top: 30px;
  }
}

/* ============================================
   DISPLAY SECTION - FULL SCREEN CAROUSEL
   ============================================ */


.display-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #000;
}

.display-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.display-carousel:active {
  cursor: grabbing;
}

.display-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.display-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.display-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.display-caption {
  position: absolute;
  bottom: 80px;
  right: 40px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* Navigation Dots */
.display-dots {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 8px;
  z-index: 100;
}

.display-dot {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.display-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.display-dot.active {
  background: rgba(255, 255, 255, 1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-section {
    height: 63vh;
  }
  
  .display-caption {
    bottom: 60px;
    right: 20px;
    font-size: 12px;
  }
  
  .display-dots {
    bottom: 20px;
    left: 20px;
    gap: 6px;
  }
  
  .display-dot {
    width: 30px;
    height: 2px;
  }
}

/* ============================================
   FURNITURE VARIATIONS SECTION
   ============================================ */

.furniture-section {
  background: #ffffff;
  padding: 100px 80px;
}

.furniture-container {
  max-width: 1400px;
  margin: 0 auto;
}

.furniture-row {
  margin-bottom: 80px;
}

.furniture-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.furniture-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.furniture-track-container {
  flex: 1;
  overflow: hidden;
}

.furniture-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.furniture-item {
  min-width: calc(25% - 15px);
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.furniture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.furniture-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.furniture-caption {
  padding: 15px 10px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #666666;
  text-align: center;
  background: transparent;
  margin: 0;
  font-style: italic;
}

.furniture-arrow {
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 48px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.furniture-arrow:hover {
  color: #666666;
  transform: scale(1.1);
}

.furniture-arrow:active {
  transform: scale(0.95);
}

/* Action Buttons */
.furniture-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.furniture-btn {
  display: inline-block;
  padding: 18px 0;
  width: 220px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  transition: all 0.4s ease;
  border: 2px solid #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.furniture-btn-customization {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.furniture-btn-customization:hover {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.furniture-btn-shop {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.furniture-btn-shop:hover {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .furniture-section {
    padding: 80px 40px;
  }
  
  .furniture-item {
    min-width: calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .furniture-section {
    padding: 60px 20px;
  }
  
  .furniture-row {
    margin-bottom: 60px;
  }
  
  .furniture-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .furniture-item {
    min-width: calc(50% - 10px);
  }
  
  .furniture-arrow {
    width: 30px;
    height: 30px;
    font-size: 36px;
  }
  
  .furniture-actions {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .furniture-btn {
    padding: 16px 0;
    width: 200px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* ============================================
   NEWSLETTER POPUP MODAL
   ============================================ */

.newsletter-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.newsletter-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.newsletter-modal-content {
  background-color: #ffffff;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUp 0.4s ease;
}

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

.newsletter-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  line-height: 1;
  padding: 0;
}

.newsletter-close:hover {
  transform: rotate(90deg);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.newsletter-image-section {
  position: relative;
  overflow: hidden;
}

.newsletter-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsletter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 50px;
  color: #ffffff;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.newsletter-description {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 350px;
  letter-spacing: 0.3px;
}

.newsletter-form-section {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.newsletter-form {
  width: 100%;
}

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

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: #1a1a1a;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: #8B4513;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder {
  color: #999999;
  font-weight: 300;
}

.form-group-checkbox {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-group-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: #8B4513;
  flex-shrink: 0;
}

.form-group-checkbox label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #666666;
  line-height: 1.6;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.newsletter-terms {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: #999999;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}

.newsletter-terms a {
  color: #c2590a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.newsletter-terms a:hover {
  color: #8B4513;
  text-decoration: underline;
}

.newsletter-submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.newsletter-submit-btn:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.newsletter-submit-btn:active {
  transform: translateY(0);
}

.btn-loading {
  display: none;
}

.form-message {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  animation: slideDown 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .newsletter-image-section {
    min-height: 300px;
  }
  
  .newsletter-overlay {
    padding: 40px 30px;
  }
  
  .newsletter-title {
    font-size: 42px;
  }
  
  .newsletter-description {
    font-size: 16px;
  }
  
  .newsletter-form-section {
    padding: 40px 30px;
  }
  
  .newsletter-close {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .newsletter-modal-content {
    margin: 10px;
  }
  
  .newsletter-overlay {
    padding: 30px 20px;
  }
  
  .newsletter-title {
    font-size: 36px;
  }
  
  .newsletter-description {
    font-size: 14px;
  }
  
  .newsletter-form-section {
    padding: 30px 20px;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    font-size: 13px;
  }
  
  .form-group select,
  .form-group input {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .form-group-checkbox label {
    font-size: 12px;
  }
  
  .newsletter-submit-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* ============================================
   LANDSCAPE MOBILE ORIENTATION (Horizontal Phone)
   Optimized for phones in landscape mode (480px - 896px width, max 500px height)
   ============================================ */

@media only screen and (max-width: 896px) and (max-height: 500px) and (orientation: landscape) {
  
  /* Navbar - Landscape */
  .navbar-content {
    padding: 0 15px;
  }
  
  .navbar-logo {
    padding: 10px 0 8px 0;
  }
  
  .logo-text {
    font-size: 14px;
    letter-spacing: 2px;
  }
  
  .hamburger {
    right: 15px;
  }
  
  .hamburger span {
    width: 22px;
  }
  
  .nav-menu {
    top: 45px;
  }
  
  .nav-link {
    padding: 12px 20px;
    font-size: 12px;
  }
  
  /* Hero Section - Landscape */
  .hero {
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 30px 40px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    max-width: 450px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .hero-cta {
    padding: 8px 0;
    font-size: 10px;
  }
  
  /* Slab Section - Landscape */
  .slab-section {
    padding: 35px 30px;
  }
  
  .slab-container {
    padding: 0 30px;
  }
  
  .slab-content {
    margin-bottom: 30px;
  }
  
  .slab-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .slab-description {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .slab-image {
    max-height: 300px;
  }
  
  .slab-img {
    max-height: 300px;
  }
  
  .slab-quote {
    padding: 15px;
    top: 25%;
  }
  
  .quote-text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .quote-author {
    font-size: clamp(11px, 1.2vw, 13px);
  }
  
  .slab-caption {
    font-size: 10px;
    margin-top: 10px;
  }
  
  /* CTA Section - Landscape */
  .cta-section {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .cta-subtitle {
    font-size: 11px;
    margin: -20px auto 30px;
    max-width: 500px;
    line-height: 1.5;
  }
  
  .cta-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .cta-image {
    height: 180px;
  }
  
  .cta-content {
    padding: 20px 15px;
  }
  
  .cta-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .cta-description {
    font-size: 11px;
    line-height: 1.5;
  }
  
  /* Masonry Section - Landscape */
  .masonry-animation-section {
    padding: 40px 30px;
  }
  
  .masonry-content {
    margin-bottom: 30px;
  }
  
  .masonry-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 10px;
  }
  
  .masonry-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .masonry-text {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .stone-blocks-animation {
    height: 250px;
    margin-bottom: 40px;
  }
  
  /* Carousel - Landscape */
  .carousel-section {
    padding: 40px 30px;
  }
  
  .carousel-wrapper {
    padding: 0 40px;
  }
  
  .carousel-track {
    gap: 12px;
  }
  
  .carousel-slide {
    min-width: calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
  }
  
  .carousel-image {
    aspect-ratio: 1/1;
  }
  
  .carousel-label {
    font-size: 10px;
    padding: 10px 8px;
  }
  
  .carousel-arrow {
    font-size: 36px;
    width: 32px;
    height: 32px;
  }
  
  /* Display Section - Landscape */
  .display-section {
    height: 70vh;
    min-height: 300px;
  }
  
  .display-caption {
    font-size: 11px;
    bottom: 50px;
    right: 30px;
  }
  
  .display-dots {
    bottom: 30px;
    left: 30px;
    gap: 6px;
  }
  
  .display-dot {
    width: 35px;
    height: 2.5px;
  }
  
  /* Furniture Section - Landscape */
  .furniture-section {
    padding: 40px 30px;
  }
  
  .furniture-row {
    margin-bottom: 50px;
  }
  
  .furniture-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .furniture-track {
    gap: 15px;
  }
  
  .furniture-item {
    min-width: calc(33.333% - 10px);
  }
  
  .furniture-caption {
    font-size: 10px;
    padding: 12px 8px;
  }
  
  .furniture-arrow {
    font-size: 36px;
    width: 32px;
    height: 32px;
  }
  
  .furniture-actions {
    gap: 20px;
    margin-top: 40px;
  }
  
  .furniture-btn {
    padding: 12px 0;
    width: 180px;
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  /* Footer - Landscape */
  footer {
    padding: 15px 0;
  }
  
  .footer-content {
    padding: 0 40px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section {
    width: 100%;
    justify-content: center;
    order: 2;
  }
  
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-link {
    font-size: 9px;
    letter-spacing: 0.4px;
  }
  
  .footer-contact {
    font-size: 9px;
    line-height: 1.4;
    margin-left: 0;
    text-align: center;
    order: 3;
    width: 100%;
  }
  
  .footer-copyright {
    font-size: 9px;
    letter-spacing: 0.4px;
    order: 1;
    width: 100%;
    text-align: center;
  }
  
  /* Newsletter Modal - Landscape */
  .newsletter-modal-content {
    max-width: 800px;
    max-height: 75vh;
    overflow-y: auto;
    transform: scale(0.8);
  }
  
  .newsletter-grid {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: auto;
  }
  
  .newsletter-image-section {
    min-height: 100%;
  }
  
  .newsletter-overlay {
    padding: 20px 25px;
  }
  
  .newsletter-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .newsletter-description {
    font-size: 11px;
    line-height: 1.4;
    max-width: 250px;
  }
  
  .newsletter-close {
    font-size: 32px;
    width: 32px;
    height: 32px;
    right: 12px;
    top: 12px;
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
  }
  
  .newsletter-form-section {
    padding: 25px 30px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .form-group select,
  .form-group input {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .form-group-checkbox {
    margin-bottom: 15px;
    gap: 10px;
  }
  
  .form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  
  .form-group-checkbox label {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .newsletter-terms {
    font-size: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .newsletter-submit-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .form-message {
    margin-top: 15px;
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Extra refinements for very small landscape screens (iPhone SE landscape, etc.) */
@media only screen and (max-width: 667px) and (max-height: 400px) and (orientation: landscape) {
  
  /* Navbar - Very Small Landscape */
  .navbar-content {
    padding: 0 12px;
  }
  
  .navbar-logo {
    padding: 8px 0 6px 0;
  }
  
  .logo-text {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
  
  .nav-menu {
    top: 40px;
  }
  
  /* Hero - Very Small Landscape */
  .hero {
    height: 100vh;
    min-height: 100vh;
  }
  
  .hero-content {
    padding: 25px 30px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .hero-cta {
    padding: 6px 0;
    font-size: 9px;
  }
  
  /* Content Sections - Very Small Landscape */
  .slab-section,
  .cta-section,
  .masonry-animation-section,
  .furniture-section {
    padding: 30px 20px;
  }
  
  .slab-container {
    padding: 0 20px;
  }
  
  .slab-title {
    font-size: 9px;
  }
  
  .slab-description {
    font-size: 11px;
  }
  
  .slab-image {
    max-height: 250px;
  }
  
  .slab-img {
    max-height: 250px;
  }
  
  /* Titles - Very Small Landscape */
  .slab-title,
  .cta-title,
  .masonry-title,
  .furniture-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .cta-subtitle {
    font-size: 10px;
    margin: -15px auto 25px;
  }
  
  /* CTA Grid - Very Small Landscape */
  .cta-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  
  .cta-image {
    height: 150px;
  }
  
  .cta-content {
    padding: 15px 12px;
  }
  
  .cta-card-title {
    font-size: 14px;
  }
  
  .cta-description {
    font-size: 10px;
  }
  
  /* Masonry Animation - Very Small Landscape */
  .masonry-content {
    margin-bottom: 25px;
  }
  
  .masonry-subtitle {
    font-size: 10px;
  }
  
  .masonry-text {
    font-size: 11px;
    margin-bottom: 30px;
  }
  
  .stone-blocks-animation {
    height: 200px;
    margin-bottom: 30px;
  }
  
  /* Carousel - Very Small Landscape */
  .carousel-section {
    padding: 30px 20px;
  }
  
  .carousel-wrapper {
    padding: 0 30px;
  }
  
  .carousel-track {
    gap: 10px;
  }
  
  .carousel-slide {
    min-width: calc(33.333% - 7px);
    max-width: calc(33.333% - 7px);
  }
  
  .carousel-label {
    font-size: 9px;
    padding: 8px 6px;
  }
  
  .carousel-arrow {
    font-size: 32px;
    width: 28px;
    height: 28px;
  }
  
  /* Display Section - Very Small Landscape */
  .display-section {
    height: 65vh;
    min-height: 250px;
  }
  
  .display-caption {
    font-size: 10px;
    bottom: 40px;
    right: 20px;
  }
  
  .display-dots {
    bottom: 25px;
    left: 20px;
    gap: 5px;
  }
  
  .display-dot {
    width: 30px;
    height: 2px;
  }
  
  /* Furniture - Very Small Landscape */
  .furniture-row {
    margin-bottom: 40px;
  }
  
  .furniture-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .furniture-track {
    gap: 12px;
  }
  
  .furniture-item {
    min-width: calc(33.333% - 8px);
  }
  
  .furniture-caption {
    font-size: 9px;
    padding: 10px 6px;
  }
  
  .furniture-arrow {
    font-size: 32px;
    width: 28px;
    height: 28px;
  }
  
  .furniture-actions {
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .furniture-btn {
    padding: 10px 0;
    width: 160px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  /* Footer - Very Small Landscape */
  footer {
    padding: 12px 0;
  }
  
  .footer-content {
    padding: 0 30px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-section {
    width: 100%;
    justify-content: center;
    order: 2;
  }
  
  .footer-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-link {
    font-size: 8px;
    letter-spacing: 0.3px;
  }
  
  .footer-contact {
    font-size: 8px;
    line-height: 1.3;
    margin-left: 0;
    text-align: center;
    order: 3;
    width: 100%;
  }
  
  .footer-copyright {
    font-size: 8px;
    letter-spacing: 0.3px;
    order: 1;
    width: 100%;
    text-align: center;
  }
  
  /* Newsletter Modal - Very Small Landscape */
  .newsletter-modal-content {
    max-width: 720px;
    max-height: 70vh;
    transform: scale(0.8);
  }
  
  .newsletter-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  
  .newsletter-title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .newsletter-description {
    font-size: 10px;
    max-width: 220px;
  }
  
  .newsletter-overlay {
    padding: 18px 22px;
  }
  
  .newsletter-form-section {
    padding: 18px 22px;
  }
  
  .newsletter-close {
    font-size: 28px;
    width: 28px;
    height: 28px;
    right: 10px;
    top: 10px;
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 11px;
    margin-bottom: 5px;
  }
  
  .form-group select,
  .form-group input {
    padding: 9px 11px;
    font-size: 13px;
  }
  
  .form-group-checkbox {
    margin-bottom: 12px;
  }
  
  .form-group-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }
  
  .form-group-checkbox label {
    font-size: 10px;
  }
  
  .newsletter-terms {
    font-size: 9px;
    margin-bottom: 15px;
  }
  
  .newsletter-submit-btn {
    padding: 11px 22px;
    font-size: 13px;
  }
  
  .form-message {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 12px;
  }
}

