/* Reset and Base Styles */
:root {
    /* Dark Theme (Default) */
    --bg-primary: #1a1a1a;
    --bg-secondary: #212529;
    --bg-tertiary: #2c2c2c;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --gold-primary: #f4c430;
    --gold-secondary: #d4af37;
    --gold-dark: #e6b028;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.4);
    --overlay-bg: rgba(0, 0, 0, 0.8);
    --input-bg: rgba(255, 255, 255, 0.1);
    --hover-overlay: rgba(244, 196, 48, 0.1);
    --color-dark: #000000;
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #8a8a8a;
    --gold-primary: #d4af37;
    --gold-secondary: #b8941f;
    --gold-dark: #c7a31c;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.15);
    --overlay-bg: rgba(255, 255, 255, 0.9);
    --input-bg: rgba(0, 0, 0, 0.05);
    --hover-overlay: rgba(212, 175, 55, 0.1);
    --color-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #f4c430 0%, #f39c2b 100%);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 196, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #f4c430;
}

.btn-secondary:hover {
    background: #f4c430;
    color: #000;
}

.btn-outline {
    background: transparent;
    color: #f4c430;
    border: 2px solid #f4c430;
}

.btn-outline:hover {
    background: #f4c430;
    color: #000;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
    position: relative;
}

.logo h2 {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: -20px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1000;
}

.header-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--input-bg);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    border: 1px solid var(--border-color);
}

.header-btn:hover {
    background: var(--hover-overlay);
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.header-btn:active {
    transform: translateY(0);
}

.theme-toggle:hover {
    background: var(--hover-overlay);
}

.contact-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.search-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 20px;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.search-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: searchModalSlide 0.3s ease;
}

@keyframes searchModalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.search-modal-header h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.search-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--input-bg);
    color: var(--text-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.search-modal-body {
    padding: 30px;
}

.search-form {
    margin-bottom: 30px;
}

.search-input-group {
    display: flex;
    background: var(--input-bg);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    padding: 8px;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--gold-primary);
    background: var(--bg-primary);
}

.search-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
}

.search-input-group input::placeholder {
    color: var(--text-muted);
}

.search-submit-btn {
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background: var(--gold-secondary);
    transform: scale(1.05);
}

.search-suggestions h4 {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    background: var(--input-bg);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.suggestion-tag:hover {
    background: var(--hover-overlay);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

/* Hero Section - Always Dark */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.about-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

/* Fallback background if video fails */
.about-hero {
    background: linear-gradient(135deg, #1a1a1a, #212529), 
                linear-gradient(45deg, #2c2c2c 25%, transparent 25%, transparent 75%, #2c2c2c 75%, #2c2c2c),
                linear-gradient(45deg, #2c2c2c 25%, transparent 25%, transparent 75%, #2c2c2c 75%, #2c2c2c);
    background-size: 60px 60px, 60px 60px;
    background-position: 0 0, 30px 30px;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23111" width="1200" height="800"/><path fill="%23222" d="M0 400l50-16.7c50-16.7 150-50 250-50s200 33.3 300 50 200 16.7 300 0 200-50 250-66.7L1200 300v500H0z"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Hide fallback when video is loaded */
.hero-background-video:not([data-error]) ~ .hero-video-fallback {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.hero-main {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 1100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.0rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1100px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-dark {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
}

.btn-dark:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: #f4c430;
    transform: translateY(-2px);
}

/* Hero Widget */
.hero-widget {
    position: absolute;
    top: 80%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 3;
}

.consultation-widget {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-widget h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.btn-phone {
    background: #f4c430;
    color: #000;
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #f39c2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.4);
}

.btn-callback {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-callback:hover {
    border-color: #f4c430;
    color: #f4c430;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 20px;
    margin-bottom: 8px;
    display: block;
}

.scroll-indicator span {
    font-size: 14px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.6);
}

.chat-button:active {
    transform: scale(0.95);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    padding: 40px 0;
    z-index: 2;
}

/* Statistics Section */
.statistics-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stat-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.stat-text h3 .highlight-yellow {
    color: #F8FF91;
}

.stat-text p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.learn-more-btn {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateX(5px);
}

.who-we-are-btn {
    background: #F8FF91;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.who-we-are-btn:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
}

.stats-numbers {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Section Headers */
.section-header {
    /* text-align: center; */
    margin-bottom: 60px;
    color: var(--text-primary);
}

.section-header h2 {
    font-size: 49px;
    font-weight: 700;
    color: #F8FF91;
    margin-bottom: 15px;
}

/* .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
} */

/* Popular Products Section */
.popular-products {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.popular-products .section-header h2 {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.popular-products .section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Carousel */
.products-carousel {
    position: relative;
    margin-bottom: 60px;
}

.products-swiper {
    overflow: visible;
    padding: 0 20px;
}

.products-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.products-swiper .swiper-slide {
    width: 320px;
    height: auto;
    margin-right: 30px;
}

.products-swiper .swiper-slide:last-child {
    margin-right: 0;
}

.product-item {
    background: var(--input-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
    border-color: var(--gold-primary);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.view-product {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--gold-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
    background: transparent;
}

.view-product:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.price {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

.products-cta {
    text-align: center;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.carousel-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.carousel-button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 16px;
}

.carousel-button:hover,
.carousel-button:not(.swiper-button-disabled):hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(244, 196, 48, 0.1);
    transform: scale(1.1);
}

.carousel-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-button.swiper-button-disabled:hover {
    border-color: var(--border-color);
    color: var(--text-secondary);
    background: transparent;
    transform: none;
}

/* Progress Bar */
.carousel-progress {
    flex: 1;
    max-width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin-left: 15px;
    position: relative;
    overflow: hidden;
}

.products-pagination {
    height: 100%;
}

.products-pagination .swiper-pagination-progressbar-fill {
    background: var(--gold-primary);
    height: 100%;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Stone Types Section */
.stone-types-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    min-height: 70vh;
}

.stone-types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stone-types-text h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.stone-types-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stone-type-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px 0;
    border-left: 3px solid transparent;
    padding-left: 20px;
}

.stone-type-item:hover,
.stone-type-item.active {
    border-left-color: var(--gold-primary);
    transform: translateX(10px);
}

.stone-type-item h2 {
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.stone-type-item:hover h2,
.stone-type-item.active h2 {
    color: var(--text-primary);
    font-weight: 600;
}

.stone-types-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.image-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    transition: all 0.4s ease;
    background: var(--bg-primary);
}

.image-circle:hover {
    border-color: var(--gold-primary);
    transform: scale(1.02);
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.image-circle:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Header Mobile Responsive Styles */
@media (max-width: 968px) {
    .navigation {
        justify-content: flex-end;
    }
    
    .header-actions {
        gap: 8px;
        margin-right: 60px;
    }
    
    .header-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hamburger {
        display: flex;
        right: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
        z-index: 1500;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .search-modal {
        padding: 60px 15px 15px;
    }
    
    .search-modal-content {
        max-width: none;
        border-radius: 15px;
    }
    
    .search-modal-header,
    .search-modal-body {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .header-actions {
        gap: 6px;
        margin-right: 50px;
    }
    
    .header-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .search-modal-header h3 {
        font-size: 18px;
    }
    
    .suggestion-tags {
        justify-content: center;
    }
    
    .suggestion-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Responsive Styles for Stone Types */
@media (max-width: 1200px) {
    .stone-types-content {
        gap: 60px;
    }
    
    .image-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 968px) {
    .stone-types-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .stone-type-item {
        text-align: left;
        padding-left: 0;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-bottom: 15px;
        transform: none;
    }
    
    .stone-type-item:hover,
    .stone-type-item.active {
        border-left: none;
        border-bottom-color: #f4c430;
        transform: translateY(-3px);
    }
    
    .stone-type-item h2 {
        font-size: 2.2rem;
    }
    
    .image-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 640px) {
    .stone-types-section {
        padding: 60px 0;
    }
    
    .stone-type-item h2 {
        font-size: 1.8rem;
    }
    
    .image-circle {
        width: 250px;
        height: 250px;
    }
}

/* Gallery Section */
.completed-jobs {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    margin-bottom: 60px;
}

.gallery-swiper {
    overflow: visible;
    padding: 0 20px;
}

.gallery-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.gallery-swiper .swiper-slide {
    width: 320px;
    height: auto;
    margin-right: 30px;
}

.gallery-swiper .swiper-slide:last-child {
    margin-right: 0;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
}

/* Process Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.how-it-works .section-header {
    text-align: left;
    margin-bottom: 60px;
}

.how-it-works .section-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #F8FF91;
    margin-bottom: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    background: var(--bg-primary);
    border: 1px solid #F8FF91;
    border-radius: 15px;
    padding: 40px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 196, 48, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 3;
}

.card-icon i {
    font-size: 2.5rem;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
    padding: 15px;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-top: 100px;
}

.card-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-number {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

/* Second card icon color */
.process-card:nth-child(2) .card-icon i {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* Third card icon color */
.process-card:nth-child(3) .card-icon i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Fourth card icon color */
.process-card:nth-child(4) .card-icon i {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .how-it-works .section-header h2 {
        font-size: 2.8rem;
    }
    
    .process-card {
        padding: 30px;
        min-height: 240px;
    }
    
    .card-content {
        padding-top: 80px;
    }
    
    .card-number {
        font-size: 6rem;
    }
}

@media (max-width: 640px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works .section-header h2 {
        font-size: 2.2rem;
    }
    
    .process-card {
        padding: 25px;
        min-height: 220px;
    }
    
    .card-icon i {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .card-content {
        padding-top: 70px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-number {
        font-size: 5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: var(--bg-secondary);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
}

.stars {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.blog-header {
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.blog-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.blog-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.blog-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 30px;
    color: white;
    text-align: center;
}

.blog-arrow {
    position: absolute;
    bottom: 180px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.blog-arrow i {
    color: var(--bg-primary);
    font-size: 1.1rem;
}

.blog-card:hover .blog-arrow {
    transform: scale(1.05);
    background: var(--text-primary);
}

.blog-overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-cards {
        max-width: 1000px;
        gap: 18px;
    }
    
    .blog-card {
        height: 280px;
    }
    
    .blog-overlay-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 968px) {
    .blog-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
    }
    
    .blog-header h2 {
        font-size: 2.8rem;
    }
    
    .blog-card {
        height: 250px;
    }
    
    .blog-overlay-content {
        padding: 30px 25px;
    }
    
    .blog-overlay-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header h2 {
        font-size: 2.2rem;
    }
    
    .blog-card {
        height: 220px;
    }
    
    .blog-overlay-content {
        padding: 25px 20px;
    }
    
    .blog-overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-arrow {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .blog-arrow i {
        font-size: 1rem;
    }
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 40px;
}

.story-text .golden-text {
    color: var(--gold-primary);
}

.story-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-container {
    position: relative;
    width: 400px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-text-top {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.overlay-text-script {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-content {
        gap: 60px;
        max-width: 1000px;
    }
    
    .story-text h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 968px) {
    .story-section {
        padding: 80px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .story-text h2 {
        font-size: 2.8rem;
    }
    
    .story-image-container {
        width: 350px;
        height: 280px;
    }
}

@media (max-width: 640px) {
    .story-section {
        padding: 60px 0;
    }
    
    .story-text h2 {
        font-size: 2.2rem;
    }
    
    .story-text p {
        font-size: 1.1rem;
    }
    
    .story-image-container {
        width: 300px;
        height: 240px;
    }
    
    .overlay-text-top {
        font-size: 1.2rem;
    }
    
    .overlay-text-script {
        font-size: 1.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4c430 0%, #f39c2b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    background: #000;
    color: #fff;
}

.cta-content .btn-primary:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 0;
    color: var(--text-primary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.footer-left {
    padding-right: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-section h4 {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding: 15px;
    
}

/* Feedback Section */
.feedback-section h3 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    padding: 10px;
}

.feedback-section .highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.feedback-form {
    max-width: 65%;
    background-color: var(--bg-secondary);
    padding: 32px 32px 44px;
    border-radius: 10px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: var(--color-dark);
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.submit-btn {
    background: linear-gradient(135deg, #d4b86a, var(--gold-primary));
    color: var(--color-dark);
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), #d4b86a);
    transform: translateY(-2px);
}

/* Info and Useful Sections */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--gold-primary);
}

/* Logo Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-sub {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section h4 {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

/* Bottom Section */
.footer-bottom-section {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 40px;
    padding: 40px 0;
    align-items: center;
    justify-items: start;
}

.subscription-section h4 {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-links-section {
    display: flex;
    align-items: center;
}

.bbb-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bbb-badge img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-copyright {
    text-align: right;
    margin: 0;
    padding: 0;
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

.email-input {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
}

/* Product Categories Page */
.product-categories-page {
    background: #0a0a0a;
    min-height: 100vh;
    position: relative;
    color: #fff;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    color: #F8FF91;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #F8FF91 !important;
}

.close-button {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.categories-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
}

.logo-badge {
    margin-bottom: 60px;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-content i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.badge-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 1px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.category-item {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    width: 100%;
    text-decoration: none;
    display: block;
}

.category-item:hover {
    color: #F8FF91;
    background: rgba(248, 255, 145, 0.05);
    transform: translateX(5px);
}

/* Products Page styles moved to products.css */

/* Product Details Page styles moved to product-details.css */

/* Responsive Design for Product Categories */
@media (max-width: 768px) {
    .close-button {
        top: 20px;
        left: 20px;
    }
    
    .close-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .categories-content {
        padding: 80px 15px 30px;
    }
    
    .logo-badge {
        margin-bottom: 40px;
    }
    
    .badge-content i {
        font-size: 2rem;
    }
    
    .badge-content span {
        font-size: 0.8rem;
    }
    
    .categories-list {
        gap: 20px;
    }
    
    .category-item {
        font-size: 1rem;
        padding: 10px 15px;
    }
}
    

.email-input::placeholder {
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--color-dark);
}

.app-store {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

.app-store:hover {
    color: var(--gold-primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        gap: 60px;
    }
    
    .footer-sections-grid {
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        padding-right: 0;
    }
    
    .footer-sections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .feedback-form {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-sections-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feedback-section h3 {
        font-size: 1.0rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-main {
        position: relative;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-widget {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 40px;
        align-self: center;
    }
    
    .hero-video {
        display: none; /* Hide video on mobile for better performance */
    }
    
    .hero-video-fallback {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-widget {
        min-width: auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .live-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .stats-numbers {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .final-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .products-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Empty State Styles */
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 60px 20px;
    text-align: center;
}

.empty-state-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
}

.empty-state-content i {
    font-size: 4rem;
    color: rgba(244, 196, 48, 0.3);
    margin-bottom: 15px;
}

.empty-state-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.empty-state-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

/* Responsive Empty State */
@media (max-width: 768px) {
    .empty-state {
        min-height: 250px;
        padding: 40px 15px;
    }
    
    .empty-state-content i {
        font-size: 3rem;
    }
    
    .empty-state-content h3 {
        font-size: 1.5rem;
    }
    
    .empty-state-content p {
        font-size: 0.9rem;
    }
}
