/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --gold-dark: #B8941F;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Pattern Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(212, 175, 55, 0.03) 35px, rgba(212, 175, 55, 0.03) 70px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

/* Top Header */
.top-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(184, 148, 31, 0.1));
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding: 12px 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: none;
}

.top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(212, 175, 55, 0.1) 8px, rgba(212, 175, 55, 0.1) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(212, 175, 55, 0.1) 8px, rgba(212, 175, 55, 0.1) 10px);
    pointer-events: none;
}

.top-header.hidden {
    transform: none;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-header-left,
.top-header-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-header span {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.top-header a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: var(--gold);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.header.sticky {
    top: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon svg {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 800px;
    overflow: hidden;
    margin-top: 125px;
    margin-bottom: 0px !important;
    padding: 0px;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.5);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B8941F 0%, #D4AF37 50%, #F4E4B8 100%);
    transition: left 0.4s ease;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-down span {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    background: var(--dark-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-tertiary);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--dark-secondary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.product-content h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* About Section */
.about {
    background: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.about-card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.about-card:hover .about-card-icon {
    filter: grayscale(0%);
}

.about-card h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-inline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label-inline {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.9) 100%);
    padding: 30px;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-inline {
        flex-direction: column;
        gap: 20px;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)), 
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920') center/cover fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(212, 175, 55, 0.05) 8px, rgba(212, 175, 55, 0.05) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(212, 175, 55, 0.05) 8px, rgba(212, 175, 55, 0.05) 10px);
    pointer-events: none;
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    background: rgba(26, 26, 26, 0.95);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

/* References Section */
.references {
    background: var(--dark-secondary);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reference-card {
    background: var(--dark-tertiary);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.reference-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.reference-card h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: #000000;
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(212, 175, 55, 0.04) 15px, rgba(212, 175, 55, 0.04) 17px),
        repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(212, 175, 55, 0.04) 15px, rgba(212, 175, 55, 0.04) 17px);
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-wrapper {
    display: grid;
    gap: 50px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: var(--dark-secondary);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--dark-secondary);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--dark-tertiary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: var(--dark-bg);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 125px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        height: calc(100vh - 125px);
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 2px solid rgba(212, 175, 55, 0.3);
        overflow-y: auto;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-slider {
        height: 80vh;
        margin-top: 0;
    }
    
    .slider-dots {
        bottom: 100px;
    }
    
    .scroll-down {
        bottom: 25px;
    }
}
    
    .scroll-down {
        bottom: 25px;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 3rem;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .slider-dots {
        bottom: 85px;
        gap: 10px;
    }
    
    .hero-slider {
        height: 65vh;
    }
}


/* Modern Products Section */
.products-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-modern-card {
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.product-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 100%);
    transition: all 0.5s ease;
}

.product-modern-card:hover::before {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.2) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.product-modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.product-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.product-badge-new {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.product-overlay-info h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-overlay-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Sticky Contact Buttons */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.sticky-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.sticky-btn.phone {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
}

.sticky-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(212, 175, 55, 0.4);
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .products-modern {
        grid-template-columns: 1fr;
    }
    
    .product-modern-card {
        height: 280px;
    }
    
    .sticky-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .sticky-btn {
        width: 55px;
        height: 55px;
    }
    
    .sticky-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        margin-top: 10px;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item-dropdown:hover .mega-menu {
        display: block;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-modern-card {
        border-radius: 12px;
        height: 260px;
    }
    
    .product-overlay-info {
        padding: 20px;
    }
    
    .product-overlay-info h3 {
        font-size: 1.5rem;
    }
    
    .product-overlay-info p {
        font-size: 0.9rem;
    }
}


/* Local SEO Section */
.local-seo {
    background: #000000;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.local-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(212, 175, 55, 0.06) 8px, rgba(212, 175, 55, 0.06) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(212, 175, 55, 0.06) 8px, rgba(212, 175, 55, 0.06) 10px);
    pointer-events: none;
    z-index: 0;
}

.seo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.seo-text h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.seo-text h3:first-child {
    margin-top: 0;
}

.seo-text p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.seo-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.seo-product-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--dark-tertiary);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.seo-product-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.seo-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.seo-product-item h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.seo-product-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.seo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seo-box {
    background: var(--dark-tertiary);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.seo-box h4 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.seo-locations,
.seo-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-locations li,
.seo-features li {
    color: var(--text-gray);
    font-size: 0.95rem;
    padding-left: 5px;
}

/* Mega Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: calc(100% + 5px);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-column h4 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mega-menu-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* Footer Mega */
.footer {
    background: #000000;
    padding: 80px 0 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-mega {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about {
    padding-right: 20px;
}

.footer-about p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    margin-bottom: 10px;
}

.footer-seo {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-seo h4 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-seo p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-keywords {
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 10px;
}

.seo-cities-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.seo-cities-footer strong {
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .mega-menu {
        min-width: 500px;
    }
    
    .seo-content {
        grid-template-columns: 1fr;
    }
    
    .footer-mega {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        transform: none;
        min-width: 100%;
        margin-top: 10px;
        display: none;
    }
    
    .nav-item-dropdown:hover .mega-menu {
        display: block;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seo-products {
        grid-template-columns: 1fr;
    }
    
    .footer-mega {
        grid-template-columns: 1fr;
    }
}


/* Cities SEO Section */
.cities-seo {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
}

.cities-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(212, 175, 55, 0.05) 12px, rgba(212, 175, 55, 0.05) 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(212, 175, 55, 0.05) 12px, rgba(212, 175, 55, 0.05) 14px);
    pointer-events: none;
    z-index: 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.city-card {
    background: var(--dark-secondary);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.city-card:hover::before {
    left: 100%;
}

.city-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.city-card h3 {
    margin-bottom: 12px;
}

.city-card h3 a {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-card:hover h3 a {
    filter: brightness(1.2);
}

.city-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.all-cities-link {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.seo-locations a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.seo-locations a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Responsive Cities */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .city-card {
        padding: 25px 20px;
    }
    
    .city-card h3 a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}


/* City Detail Pages */
.city-hero,
.blog-hero,
.product-detail-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.city-hero h1,
.blog-hero h1,
.product-detail-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.city-hero p,
.blog-hero p,
.product-detail-hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.city-content,
.blog-content,
.product-detail {
    padding: 80px 0;
}

.city-layout,
.blog-layout,
.product-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.city-main h2,
.city-main h3,
.product-detail-main h2,
.product-detail-main h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.city-main h2:first-child,
.product-detail-main h2:first-child {
    margin-top: 0;
}

.city-main p,
.product-detail-main p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.city-products,
.product-types {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.city-product-item,
.product-type-card {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.city-product-item:hover,
.product-type-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.city-product-item h4,
.product-type-card h4 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.city-product-item p,
.product-type-card p {
    margin-bottom: 1rem;
}

.city-product-item ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.city-product-item li {
    color: var(--text-light);
    font-size: 0.95rem;
}

.city-districts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.district-column h4 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.district-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.district-column li {
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Sidebar */
.city-sidebar,
.blog-sidebar,
.product-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: var(--dark-secondary);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.sidebar-box h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.sidebar-box p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sidebar-box a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-box a:hover {
    color: var(--gold);
}

.sidebar-btn {
    display: block;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.4s ease;
    margin-top: 15px;
}

.sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.city-links,
.sidebar-features,
.blog-categories,
.popular-posts,
.related-products {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product Detail */
.product-image-gallery img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.product-features-list,
.usage-areas,
.installation-steps {
    color: var(--text-gray);
    line-height: 1.9;
    margin: 20px 0;
}

.product-features-list li,
.usage-areas li {
    margin-bottom: 15px;
}

.installation-steps {
    counter-reset: step-counter;
    list-style: none;
}

.installation-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.installation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.technical-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--dark-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.technical-specs th,
.technical-specs td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.technical-specs th {
    background: var(--dark-tertiary);
    color: var(--gold);
    font-weight: 600;
}

.technical-specs td {
    color: var(--text-gray);
}

.price-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(10, 10, 10, 0.5));
    border: 2px solid var(--gold);
}

.price-info {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--dark-secondary);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-bg);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-info {
    padding: 25px;
}

.blog-info h2 {
    margin-bottom: 10px;
}

.blog-info h2 a {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .city-layout,
    .blog-layout,
    .product-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .city-districts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .city-hero h1,
    .blog-hero h1,
    .product-detail-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .city-product-item ul {
        grid-template-columns: 1fr;
    }
}


/* Marquee Section */
.marquee-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 31, 0.15));
    border-top: 2px solid rgba(212, 175, 55, 0.4);
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
    margin-top: 0;
}

.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(212, 175, 55, 0.08) 6px, rgba(212, 175, 55, 0.08) 8px),
        repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(212, 175, 55, 0.08) 6px, rgba(212, 175, 55, 0.08) 8px),
        linear-gradient(90deg, 
            rgba(10, 10, 10, 0.8) 0%, 
            transparent 10%, 
            transparent 90%, 
            rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-block;
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.marquee-content span::after {
    content: '✦';
    position: absolute;
    right: 15px;
    color: var(--gold);
    opacity: 0.7;
    font-size: 0.8rem;
    -webkit-text-fill-color: var(--gold);
}

.marquee-content span:last-child::after {
    display: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* Responsive Top Header */
@media (max-width: 1024px) {
    .top-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-header-left,
    .top-header-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-header {
        position: relative;
    }
    
    .header {
        top: 0;
        position: relative;
    }
    
    .header.sticky {
        position: fixed;
        top: 0;
    }
    
    .hero-slider {
        margin-top: 0;
        height: 600px;
    }
    
    .marquee-content span {
        font-size: 1rem;
        padding: 0 30px;
    }
    
    .nav-menu {
        top: 80px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}
    
    .nav-menu {
        top: 80px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 500px;
        margin-top: 0;
    }
    
    .marquee-content span {
        font-size: 0.9rem;
        padding: 0 25px;
    }
    
    .slider-dots {
        bottom: 85px;
        gap: 10px;
    }
    
    .slider-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
}


/* References Page */
.references-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 125px;
}

.references-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.references-hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.references-content {
    padding: 80px 0;
}

.references-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.references-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.references-intro p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.1rem;
}

.reference-logo-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reference-logo-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.reference-logo-card img {
    max-width: 200px;
    height: auto;
    filter: grayscale(100%) brightness(1.2);
    transition: filter 0.3s ease;
}

.reference-logo-card:hover img {
    filter: grayscale(0%) brightness(1);
}

.reference-logo-card h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 600;
}

.references-link {
    text-align: center;
    margin-top: 50px;
}

.references-sectors {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sector-card {
    background: var(--dark-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sector-card h3 {
    background: linear-gradient(135deg, #F4E4B8 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.sector-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.references-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 31, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.references-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.references-cta p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .references-hero {
        margin-top: 0;
        padding: 120px 0 60px;
    }
    
    .references-hero h1 {
        font-size: 2.2rem;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

/* Font Awesome Icon Styles */
.fas, .far, .fab {
    margin-right: 8px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.top-header .fas {
    color: var(--gold);
    font-size: 0.9rem;
}

.marquee-content .fas {
    margin-right: 10px;
    color: var(--gold);
    font-size: 1.1rem;
}

.about-card-icon .fas {
    font-size: 3rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.about-card:hover .about-card-icon .fas {
    transform: scale(1.1) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.contact-icon .fas {
    font-size: 2.5rem;
    color: var(--gold);
}

.contact-card:hover .contact-icon .fas {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.seo-icon .fas {
    font-size: 1.8rem;
    color: var(--gold);
}

.sector-icon .fas {
    font-size: 3rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon .fas {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.footer-contact-info .fas {
    color: var(--gold);
    margin-right: 10px;
}

.sidebar-features .fas,
.seo-features .fas,
.seo-locations .fas,
.usage-areas .fas {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.blog-meta .fas {
    color: var(--gold);
    margin-right: 5px;
    font-size: 0.9rem;
}

/* Icon Animation on Hover */
.sticky-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive Icon Sizes */
@media (max-width: 768px) {
    .about-card-icon .fas {
        font-size: 2.5rem;
    }
    
    .contact-icon .fas {
        font-size: 2rem;
    }
    
    .sector-icon .fas {
        font-size: 2.5rem;
    }
    
    .seo-icon .fas {
        font-size: 1.5rem;
    }
}
