* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { 
  background: #fff; 
  color: #222; 
  line-height: 1.6; 
}

.container { 
  width: 90%; 
  max-width: 1200px; 
  margin: auto; 
}

/* Header Styles */
.header { 
  background: #fff; 
  padding: 20px 0; 
  border-bottom: 1px solid #ddd; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Social Media Widgets */
.social-widgets {
  display: flex;
  gap: 15px;
  flex: 1;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-link:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.social-link:nth-child(1):hover {
  background: #1877f2; /* Facebook blue */
}

.social-link:nth-child(2):hover {
  background: #e4405f; /* Instagram pink */
}

.social-link:nth-child(3):hover {
  background: #25d366; /* WhatsApp green */
}

/* Logo */
.logo { 
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* Navigation */
.nav { 
  display: flex;
  gap: 25px;
  flex: 1;
  justify-content: flex-end;
}

.nav a { 
  text-decoration: none; 
  color: #444; 
  font-size: 16px; 
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover { 
  color: #000; 
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Categories dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger {
  color: #000;
}

.nav-dropdown-trigger .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger .fa-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-menu li:last-child {
  border-bottom: none;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #444;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: #000;
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Slider Styles */
.slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #fff;
  transform: scale(1.2);
}

/* Categories Section */
.categories {
  padding: 60px 0;
  background: #fff;
}

.categories-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.categories-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.category-item {
  flex: 0 0 auto;
  text-align: center;
  max-width: 300px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-item:hover {
  transform: translateY(-10px);
}

.category-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.category-item:hover .category-image-wrapper {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.category-image-default,
.category-image-hover {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-image-default {
  position: relative;
  opacity: 1;
}

.category-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-item:hover .category-image-default {
  opacity: 0;
}

.category-item:hover .category-image-hover {
  opacity: 1;
}

.category-item h3 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.category-item:hover h3 {
  color: #000;
  transform: scale(1.05);
}

/* Categories Page Styles */
.categories-page {
  padding: 60px 0;
  background: #fff;
  min-height: calc(100vh - 200px);
}

.category-section {
  margin-bottom: 80px;
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #000;
}

.category-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-image-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f9f9f9;
}

.category-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-image-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Category Image Viewer: thumbnails left, main image center, title/description right */
.image-viewer {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin: 40px auto 0;
  min-height: 480px;
  max-width: 1200px;
}

.image-viewer-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100px;
  min-width: 100px;
  max-height: 520px;
  overflow-y: auto;
  padding: 4px 0;
  flex-shrink: 0;
}

.image-viewer-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f9f9f9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.image-viewer-thumb:hover {
  border-color: #999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.image-viewer-thumb.active {
  border-color: #000;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.image-viewer-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
}

.image-viewer-main {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.image-viewer-main img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  display: block;
}

.image-viewer-info {
  width: 380px;
  min-width: 380px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-viewer-title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.image-viewer-description {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* Category design grid: same card size as home page categories (max 300px, image 280px) */
.category-design-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.category-design-card {
  flex: 0 0 auto;
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: visible;
}

.category-design-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.category-design-card img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.category-design-card:hover img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.category-design-card .category-design-name {
  margin-top: 20px;
  padding: 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.category-design-card:hover .category-design-name {
  color: #000;
  transform: scale(1.05);
}

/* Gallery modal overlay: transparent/dark background, close button */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease, opacity 0.25s ease;
}

.gallery-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1002;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-modal-close:hover {
  background: #fff;
  transform: scale(1.08);
}

.gallery-modal-inner {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal.is-open .gallery-modal-inner .image-viewer {
  animation: galleryModalIn 0.3s ease;
}

@keyframes galleryModalIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.gallery-modal-open {
  overflow: hidden;
}

/* Contact Page Styles */
.contact-page {
  background: #fff;
}

.map-section {
  width: 100%;
  margin-top: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-form-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.contact-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-subheading {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-column layout: form left, info right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrapper {
  min-width: 0;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Contact info box (right side) */
.contact-info-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.contact-info-heading {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  padding-bottom: 16px;
  border-bottom: 2px solid #eee;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list li i {
  color: #000;
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-list a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-list a:hover {
  color: #000;
  text-decoration: underline;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.form-group .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.submit-btn i {
  font-size: 16px;
}

/* Footer */
.footer { 
  padding: 30px 0; 
  text-align: center; 
  background: #f1f1f1; 
  font-size: 14px; 
  color: #666;
  margin-top: 0;
}

.footer .brand-name {
  font-weight: bold;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .social-widgets {
    order: 1;
    justify-content: center;
  }
  
  .logo {
    order: 2;
  }
  
  .nav {
    order: 3;
    justify-content: center;
    gap: 15px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .slider-btn.prev {
    left: 15px;
  }
  
  .slider-btn.next {
    right: 15px;
  }
  
  .categories-heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .categories-grid {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .category-item {
    max-width: 100%;
  }
  
  .category-image-wrapper {
    max-width: 100%;
  }
  
  .category-image-default,
  .category-image-hover {
    max-width: 100%;
  }
  
  .category-item h3 {
    font-size: 20px;
  }
  
  .category-item:hover {
    transform: translateY(-5px);
  }
  
  .categories-page {
    padding: 40px 0;
  }
  
  .category-section {
    margin-bottom: 60px;
  }
  
  .category-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .category-images {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .image-viewer {
    flex-direction: column;
    min-height: auto;
    margin-top: 30px;
  }

  .image-viewer-thumbnails {
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    max-height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 0;
    gap: 8px;
  }

  .image-viewer-thumb {
    width: 72px;
    min-width: 72px;
  }

  .image-viewer-main {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    flex: 0 0 auto;
    min-height: 280px;
  }

  .image-viewer-main img {
    max-width: 100%;
    height: auto;
  }

  .image-viewer-info {
    width: 100%;
    min-width: 0;
    padding: 20px;
  }

  .image-viewer-title {
    font-size: 20px;
  }

  .image-viewer-description {
    font-size: 14px;
  }

  .category-design-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .category-design-card {
    max-width: 100%;
  }

  .category-design-card img {
    max-width: 100%;
  }

  .category-design-card .category-design-name {
    margin-top: 16px;
    padding: 0 8px;
    font-size: 20px;
  }

  .gallery-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .map-container {
    height: 300px;
  }
  
  .contact-form-section {
    padding: 40px 0;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-wrapper {
    position: static;
    padding: 30px 20px;
  }
  
  .contact-heading {
    font-size: 32px;
  }
  
  .contact-subheading {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .submit-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}
