* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --secondary: #666666;
    --accent: #2D7A5F;
    --bg-white: #FFFFFF;
    --bg-gray: #F5F5F5;
    --bg-light: #FAFAFA;
}

body {
    font-family: 'Helvetica Neue', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--primary);
    line-height: 1.6;
    background: #F8F8F8;
    font-weight: 300;
}

[dir="rtl"] body {
    font-family: 'Vazir', 'Tahoma', sans-serif;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #D0D0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #F8F8F8;
    border-bottom: none;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem 1rem 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Helvetica Neue', 'Arial Black', sans-serif;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.logo svg {
    width: 36px;
    height: 36px;
}

.logo span {
    font-size: 1.75rem;
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-dropdown {
    position: relative;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a.has-dropdown svg {
    width: 10px;
    height: 6px;
    opacity: 0.6;
    transition: transform 0.3s;
}

.nav-dropdown:hover .has-dropdown svg {
    transform: rotate(180deg);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-link-disabled {
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    cursor: default;
    opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    min-width: 700px;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 2rem;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #2D7A5F;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0;
    position: relative;
}

.dropdown-item::after {
    display: none;
}

.dropdown-item:hover {
    background: #1a1a1a;
    color: white !important;
}

.dropdown-item svg {
    width: 32px;
    height: 32px;
    stroke: white;
    flex-shrink: 0;
}

.dropdown-item span {
    font-size: 1rem;
    font-weight: 400;
    flex: 1;
}

.dropdown-item.has-badge::before {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #2D7A5F;
    border-radius: 50%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background: #F5F5F5;
}

.btn-quote {
    position: relative;
    padding: 0.5rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: all 0.3s;
}

.btn-quote:hover {
    background: #236B52;
}

.quote-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.btn-lang {
    padding: 0.5rem 1.25rem;
    border: 1px solid #E0E0E0;
    background: white;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-lang:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-current {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0.5rem 0.75rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.lang-current:hover {
    color: var(--accent);
}

.lang-current svg {
    transition: transform 0.3s;
}

.lang-current.active svg {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: #000000;
    color: white;
    border-radius: 8px;
    padding: 0.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lang-option {
    background: none;
    border: none;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
}

.lang-option::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.lang-option:hover {
    background: #1a1a1a;
}

.lang-option:hover::after {
    transform: scaleX(1);
}

.lang-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lang-divider {
    display: none;
}

.btn-dark-mode {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-dark-mode:hover {
    background: #F5F5F5;
}

.btn-dark-mode svg {
    transition: opacity 0.3s;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-login:hover {
    background: #F5F5F5;
}

.btn-mobile {
    display: none;
    padding: 0.5rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Carousel - Full Width Slider */
.hero-carousel {
    margin-top: 70px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #F8F8F8;
    height: 85vh;
    min-height: 600px;
}

.hero-carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-carousel-track {
    display: flex;
    gap: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.hero-carousel-card {
    flex: 0 0 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.hero-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.hero-carousel-card:hover img {
    transform: scale(1.02);
}

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-card-content {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    right: 4rem;
    color: white;
    z-index: 10;
    max-width: 800px;
}

.hero-card-number {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 1;
    letter-spacing: 0.1em;
}

.hero-card-content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-card-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: white;
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

@media (max-width: 1024px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-card-content h2 {
        font-size: 3rem;
    }
    
    .hero-card-content {
        bottom: 3rem;
        left: 3rem;
        right: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-card-content h2 {
        font-size: 2rem;
    }
    
    .hero-card-content p {
        font-size: 1rem;
    }
    
    .hero-card-content {
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.search-close {
    position: absolute;
    top: 0;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.search-box svg {
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 300;
}

.search-results {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #F0F0F0;
    text-decoration: none;
    color: var(--primary);
    display: block;
    transition: background 0.3s;
}

.search-result-item:hover {
    background: #F8F8F8;
}

.search-result-item:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: #D84315;
    border-color: #D84315;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 81, 0, 0.3);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-white:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Sections */
.section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.bg-gray {
    background: #F8F8F8;
}

.section-white {
    background: #FFFFFF;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.link:hover {
    transform: translateX(5px);
}

/* Categories - Pill Style like mmcité */
.categories-scroll-wrapper {
    position: relative;
    margin-top: 2rem;
}

.categories-scroll-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.categories-scroll-track::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 60px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s;
    white-space: nowrap;
}

.category-pill svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.category-pill span {
    font-size: 1rem;
    font-weight: 500;
}

.category-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 122, 95, 0.25);
}

.category-pill:hover svg {
    stroke: white;
}

.category-scroll-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #D0D0D0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-scroll-arrow:hover {
    background: #F5F5F5;
    border-color: #B0B0B0;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .categories-scroll-track {
        gap: 1rem;
    }
    
    .category-pill {
        padding: 1rem 2rem;
    }
    
    .category-pill svg {
        width: 24px;
        height: 24px;
    }
    
    .category-pill span {
        font-size: 0.875rem;
    }
    
    .category-scroll-arrow {
        width: 40px;
        height: 40px;
    }
    
    .category-scroll-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Laman in the City Section */
.city-section-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    padding: 6rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.city-text-column {
    flex: 0 0 350px;
    position: sticky;
    top: 120px;
}

.city-text-column h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.city-text-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.city-projects-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.city-projects-link:hover {
    background: #333333;
    gap: 0.75rem;
}

.city-projects-link svg {
    width: 16px;
    height: 16px;
}

/* Laman in the City Carousel */
.city-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.city-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.city-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.city-carousel-card {
    flex: 0 0 calc(50% - 0.75rem);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 600px;
    cursor: pointer;
    transition: all 0.4s;
}

.city-carousel-card:hover {
    transform: translateY(-4px);
}

.city-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.city-carousel-card:hover img {
    transform: scale(1.05);
}

.city-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.city-card-overlay h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

@media (max-width: 1024px) {
    .city-section-wrapper {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    
    .city-text-column {
        flex: 0 0 auto;
        position: static;
        max-width: 600px;
    }
    
    .city-carousel-card {
        flex: 0 0 calc(50% - 0.75rem);
        height: 500px;
    }
}

@media (max-width: 768px) {
    .city-section-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .city-text-column h2 {
        font-size: 2rem;
    }
    
    .city-carousel-card {
        flex: 0 0 100%;
        height: 400px;
    }
    
    .city-card-overlay {
        padding: 1.5rem;
    }
    
    .city-card-overlay h3 {
        font-size: 1.25rem;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #F0F0F0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #FAFAFA;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.product-info p {
    color: var(--secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-btn {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.product-card:hover .product-btn {
    transform: translateX(5px);
}

/* Editorial Statement */
.cta {
    background: #E8E8E8;
    padding: 8rem 3rem;
}

.cta-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.cta-left h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.cta-highlight {
    color: #2D7A5F;
    font-weight: 300;
    display: block;
}

.cta-right p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-dark:hover {
    background: #333333;
    gap: 1rem;
}

.btn-cta-dark svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-left h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 2rem;
    }
    
    .cta-left h2 {
        font-size: 2rem;
    }
    
    .cta-right p {
        font-size: 0.9rem;
    }
}

/* Where can you meet us */
.meet-us {
    background: #000000;
    padding: 8rem 3rem;
    color: white;
}

.meet-us-content {
    max-width: 1400px;
    margin: 0 auto;
}

.meet-us h2 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.btn-meet-us {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-meet-us:hover {
    background: white;
    color: #000000;
    gap: 1rem;
}

.btn-meet-us svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .meet-us {
        padding: 5rem 2rem;
    }
    
    .meet-us h2 {
        font-size: 2.5rem;
    }
    
    .btn-meet-us {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }
}

/* Footer - Dark Mode */
.footer {
    background: #000000;
    color: white;
    padding: 5rem 3rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

.footer-social p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: #999;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: #000000;
    transform: translateY(-3px);
}

.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2D7A5F;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    border: none;
    color: white;
    font-size: 0.875rem;
    font-family: 'Vazir', 'Tahoma', sans-serif !important;
}

.newsletter-form input::placeholder {
    color: #666;
    font-family: 'Vazir', 'Tahoma', sans-serif !important;
}

[dir="rtl"] .newsletter-form input {
    font-family: 'Vazir', 'Tahoma', sans-serif !important;
}

[dir="rtl"] .newsletter-form input::placeholder {
    font-family: 'Vazir', 'Tahoma', sans-serif !important;
}

.btn-newsletter {
    padding: 1rem 1.5rem;
    background: #2D7A5F;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-newsletter:hover {
    background: #236B52;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #666;
    font-size: 0.75rem;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 2rem 2rem;
    }
    
    .footer-tagline {
        font-size: 1.5rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }
    
    .hero-card,
    .hero-card:nth-child(1),
    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        height: 500px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .btn-mobile {
        display: block;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.search-close:hover {
    background: #F5F5F5;
    color: #000;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Vazir', 'Tahoma', sans-serif;
}

.search-input:focus {
    border-color: var(--accent);
}

.search-results {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-item {
    padding: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: block;
}

.search-result-item:hover {
    border-color: var(--accent);
    background: #F8F8F8;
    transform: translateX(-4px);
}

.search-result-item h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.search-result-item p {
    color: #999;
    font-size: 0.875rem;
}

[dir="rtl"] .search-result-item:hover {
    transform: translateX(4px);
}

[dir="rtl"] .search-close {
    right: auto;
    left: 1rem;
}


/* ===================================
   Product Detail Page Styles
   =================================== */

.product-detail-container {
    max-width: 1400px;
    margin: 90px auto 0;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-gallery-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gallery Slider */
.product-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    background: #F5F5F5;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: zoom-in;
}

.gallery-main-image:first-child {
    opacity: 1;
}

.gallery-main-image.active {
    opacity: 1;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-nav-btn svg {
    color: #333;
}

/* Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.thumbnail {
    flex: 0 0 100px;
    height: 100px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #E0E0E0;
    transition: all 0.3s;
    object-fit: cover;
    background: white;
    opacity: 0.6;
}

.thumbnail:hover {
    border-color: #999;
    opacity: 0.8;
}

.thumbnail.active {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 0 0 1px var(--primary);
    opacity: 1;
}

/* Product Info Section */
.product-info-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    color: #000;
    line-height: 1.2;
    text-align: left;
}

.product-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.product-description p {
    margin-bottom: 1rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin: 1rem 0;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.read-more-btn:hover {
    gap: 0.75rem;
}

.read-more-btn svg {
    transition: transform 0.3s;
}

.read-more-btn.active svg {
    transform: rotate(180deg);
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
}

.expandable-content.expanded {
    max-height: 5000px;
}

.expandable-content h3 {
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.expandable-content p {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #666;
    text-align: left;
}

/* Product Specifications */
.product-specs {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E0E0E0;
}

.product-specs h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.spec-value {
    font-size: 1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 16px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Product Card Styles for Similar Products */
.product-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-content h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.product-card-content p {
    color: #666;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-container {
        padding: 2.5rem 1.5rem;
    }
    
    .product-gallery {
        aspect-ratio: 16/9;
        max-width: 100%;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-detail-container {
        margin-top: 70px;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    
    .product-gallery {
        aspect-ratio: 16/10;
        max-width: 100%;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .gallery-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 0.5rem;
    }
    
    .gallery-next {
        right: 0.5rem;
    }
    
    .thumbnail {
        flex: 0 0 70px;
        height: 70px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}
