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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --accent-color: #3498db;
    --text-light: #777;
    --gold-accent: #d4af37;
}

body {
    color: #333;
    line-height: 1.6;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

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

.section-title h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Unified Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/placeholder.svg?height=600&width=1200') center/cover;
    opacity: 0.1;
    z-index: 1;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 12px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    transition: all 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    color: var(--secondary-color);
    background: rgba(255,255,255,0.1);
}

/* Header */
.header {
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Slider */
.slider {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.slide-content {
    z-index: 2;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

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

.slider-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.story-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.story-highlight {
    background: white;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-highlight p {
    font-style: italic;
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.story-badge .year {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.story-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.values-section {
    padding: 100px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.team-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.team-info .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.team-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.timeline-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-content {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left-color: rgba(255,255,255,0.1);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: rgba(255,255,255,0.1);
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    top: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.timeline-content p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

.about-cta {
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.product-filter {
    padding: 60px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.filter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.filter-tabs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 25px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.sort-dropdown {
    position: relative;
}

.sort-select {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    min-width: 180px;
}

.products-showcase {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}


.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    max-width: 360px;
}

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

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.action-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-category {
    color: var(--text-light);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.product-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f8f9fa;
    color: var(--text-light);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 15px;
}

.product-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
}

.load-more {
    text-align: center;
    padding: 40px 0;
}

.load-more .btn {
    padding: 15px 40px;
    font-size: 16px;
}

/* Craftsmanship Section */
.craftsmanship {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.craftsmanship-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.craftsmanship-flex {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
    width: 100%;
}

.craftsmanship-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-accent {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.craftsmanship-text h2 {
    font-size: 42px;
    font-family: Georgia, serif;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.craftsmanship-text > p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.craft-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-grow: 1;
}

.craft-detail {
    border-left: 3px solid var(--gold-accent);
    padding-left: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-detail h3 {
    font-size: 20px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.craft-detail p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.craftsmanship-flex {
  display: flex;
  flex-direction: column; /* Stack items vertically on mobile */
  gap: 15px; /* Controls spacing between text and images */
}

.craftsmanship-images {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px; /* Minimal margin for slight spacing */
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  height: 520px;
}

.image-item {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

/* Media query for mobile devices */
@media (max-width: 768px) {
  .craftsmanship-flex {
    gap: 10px; /* Smaller gap for mobile */
  }
  .craftsmanship-images {
    margin-top: 5px; /* Even smaller margin for mobile */
  }
}


/* Gallery Section */
.gallery-filter-section {
    padding: 40px 0 20px;
    background: #f8f9fa;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-tab {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.gallery-section {
    padding: 20px 0 80px;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;max-width:360px;
}

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

.gallery-image {
    height: 250px;
    overflow: hidden;
    position: relative;

}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(231, 76, 60, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

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

.gallery-overlay i {
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

.gallery-overlay .view-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-info {
    padding: 15px;
    text-align: center;
}

.gallery-info h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-category {
    color: var(--secondary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Contact Section */
.contact-info-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s;
}

.contact-info-card:hover::before {
    left: 100%;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.contact-info-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-info h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-form-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.contact-features {
    list-style: none;
    padding: 0;
}

.contact-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.contact-features li i {
    color: var(--secondary-color);
    margin-right: 15px;
    width: 20px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    padding: 15px 40px;
    font-size: 16px;
    min-width: 200px;
}

.map-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

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

.map-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.map-info p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.location-details {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.location-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.location-details p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.location-details i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.map-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255,255,255,0.3);
}

.map-placeholder i {
    font-size: 48px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
}

.map-placeholder p {
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.hours-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: white;
}

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

.hours-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.hours-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.hours-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 5px;
}

.hours-card .highlight {
    color: white;
    font-weight: 600;
}

/* Footer Call to Action */
.footer-call-to-action {
    background: linear-gradient(135deg, var(--secondary-color), #c0392b);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/placeholder.svg?height=400&width=1200') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text {
    flex: 1;
    max-width: 70%;
}

.cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: white;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-button {
    flex-shrink: 0;
}

.btn-cont {
    display: inline-block;
}

.btn-cont a {
    display: inline-block;
    padding: 18px 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cont a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cont a:hover::before {
    left: 100%;
}

.btn-cont a:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.btn-cont span {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.footer-column p {
    margin-bottom: 20px;
    color: #bbb;
    line-height: 1.6;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: #bbb;
    transition: all 0.3s;
    display: inline-block;
}

.quick-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

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

.contact-info-footer li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
}

.contact-info-footer i {
    color: var(--secondary-color);
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.mobile-active {
        display: flex !important;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        text-align: center;
        font-size: 16px;
    }

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

    .header {
        position: relative;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .slider {
        height: 450px;
    }

    .slide {
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 28px;
    }

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

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

    .story-text h2 {
        font-size: 32px;
    }

    .story-badge {
        position: static;
        margin: 20px auto;
        display: inline-block;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-year {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content::after {
        display: none;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 16px;
    }

    .filter-content {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tabs {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

    .product-buttons {
        flex-direction: column;
    }

    .craftsmanship {
        padding: 60px 0;
    }

    .craftsmanship-text h2 {
        font-size: 32px;
    }

    .image-grid {
        gap: 15px;
        height: 400px;
    }

    .image-item {
        height: 190px;
    }

    .craft-details {
        gap: 25px;
    }

    .craft-detail {
        padding-left: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .filter-tabs {
        justify-content: center;
        gap: 10px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 12px;
    }

    .gallery-image {
        height: 200px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }

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

    .contact-form-info h2 {
        font-size: 32px;
    }

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

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

    .map-info h2 {
        font-size: 28px;
    }

    .map-placeholder {
        height: 300px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 25px;
    }

    .faq-answer.active {
        padding: 0 25px 20px;
    }

    .footer-call-to-action {
        padding: 40px 0;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-text h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-text p {
        font-size: 16px;
    }

    .btn-cont a {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .craftsmanship-flex {
        flex-direction: row;
        align-items: stretch;
        min-height: 520px;
    }

    .craftsmanship-text {
        padding-right: 60px;
        justify-content: center;
    }

    .craftsmanship-images {
        align-items: stretch;
    }

    .image-grid {
        height: 100%;
        min-height: 520px;
    }

    .craft-details {
        justify-content: space-between;
        height: auto;
    }
}