@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    /* --card-bg: #1a1a1a; */
    --dark-bg: #0a0a0a;
    --card-bg: rgba(25, 25, 25, 0.98);
    --gold: #C8A856;
    --gold-light: #e0c46e;
    --gold-dark: #a08030;
    --gold-gradient: linear-gradient(135deg, #C8A856 0%, #e0c46e 50%, #C8A856 100%);
    --text-white: #ffffff;
    --text-light: #e8e8e8;
    --text-muted: #888888;
    --border-gold: rgba(200, 168, 86, 0.3);
    --shadow-gold: 0 0 60px rgba(200, 168, 86, 0.15);
    --shadow-dark: 0 25px 80px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.elegant-text {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

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

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(200, 168, 86, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--text-white);
    color: var(--primary-bg);
}

.btn-white:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.logo:hover img {
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    position: relative;
    padding: 10px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-cta {
    padding: 12px 30px !important;
    background: var(--gold-gradient);
    color: var(--primary-bg) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 7px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 120px 30px 30px;
    transform: translateX(100%);
    transition: var(--transition-slow);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-light);
    display: block;
    padding: 15px;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.5) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.slide-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.5s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

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

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(200, 168, 86, 0.5);
    background: rgba(10, 10, 10, 0.5);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--primary-bg);
    border-color: var(--gold);
}

.hero-scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 20;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-scroll .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding: 0 60px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-white);
    margin-bottom: 25px;
}

.section-description {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.specializations {
    background: var(--secondary-bg);
    position: relative;
}

.specializations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spec-card {
    background: var(--card-bg);
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    position: relative;
}

.spec-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--border-gold);
    transform: rotate(45deg);
    transition: var(--transition);
}

.spec-card:hover .spec-icon::before {
    border-color: var(--gold);
    transform: rotate(45deg) scale(1.1);
}

.spec-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--gold);
}

.spec-card h3 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.spec-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.products-section {
    background: var(--primary-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-image .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: var(--gold);
    opacity: 0.3;
}

.product-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--primary-bg);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay .btn {
    width: 100%;
    padding: 12px;
    font-size: 12px;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
    transition: var(--transition);
}

.product-card:hover .product-content h3 {
    color: var(--gold);
}

.product-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-link i {
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(5px);
}

.categories-showcase {
    background: var(--secondary-bg);
    padding: 0;
    overflow: hidden;
}

.categories-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.category-item {
    flex: 0 0 auto;
    padding: 40px 60px;
    text-align: center;
    border-right: 1px solid var(--border-gold);
    transition: var(--transition);
}

.category-item:hover {
    background: rgba(200, 168, 86, 0.1);
}

.category-item i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.category-item span {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.1"/></svg>') repeat;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--primary-bg);
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

footer {
    background: var(--secondary-bg);
    padding: 100px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-bg);
    transform: translateY(-5px);
}

.footer-section h4 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a:hover::before {
    background: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    position: relative;
    padding-top: 100px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23C8A856" stroke-width="0.1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    background:
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(40px, 7vw, 70px);
    color: var(--text-white);
    margin-bottom: 20px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--text-muted);
}

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

.filter-btn {
    padding: 14px 30px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-bg);
}

/* .contact-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 100px 0;
} */

.contact-info h2 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 16px;
}

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

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-details .icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-details li:hover .icon {
    background: var(--gold);
    border-color: var(--gold);
}

.contact-details li:hover .icon i {
    color: var(--primary-bg);
}

.contact-details .icon i {
    font-size: 22px;
    color: var(--gold);
    transition: var(--transition);
}

.contact-details .text h4 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.contact-details .text p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--border-gold);
}

.contact-form h3 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: var(--primary-bg);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 168, 86, 0.1);
}

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

.form-message {
    padding: 20px;
    margin-bottom: 25px;
    display: none;
    font-size: 14px;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    display: block;
}

.map-section {
    height: 500px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) contrast(1.1);
}

/* .product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 100px 0;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-main-image .placeholder-icon {
    font-size: 120px;
    color: var(--gold);
    opacity: 0.2;
} */

/* .product-info .category {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-bg);
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.product-info h1 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 25px;
}

.product-info .description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 45px;
} */

/* .specifications {
    background: var(--card-bg);
    padding: 40px;
    border: 1px solid var(--border-gold);
    margin-bottom: 40px;
}

.specifications h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-gold);
}

.specifications table {
    width: 100%;
}

.specifications td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.specifications td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.specifications td:last-child {
    color: var(--text-light);
    font-weight: 500;
} */

/* .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
} */

/* .about-content h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
} */

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-gold);
}

.stat-item h3 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
}

.about-image-placeholder {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder i {
    font-size: 150px;
    color: var(--gold);
    opacity: 0.2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 50px 30px;
    background: var(--card-bg);
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-10px);
}

.value-item i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 25px;
}

.value-item h4 {
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .contact-section,
    .product-detail,
    .about-section {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .spec-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    section {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 30px;
    }

    .slider-arrows {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 12px;
    }

    .logo img {
        height: 45px;
    }
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.admin-header {
    background: var(--card-bg);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid var(--border-gold);
}

.admin-header h1 {
    font-size: 24px;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-nav a {
    color: var(--text-light);
    font-size: 13px;
    padding: 12px 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--gold);
    color: var(--primary-bg);
}

.admin-card {
    background: var(--card-bg);
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid var(--border-gold);
}

.admin-card h2 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gold);
    font-family: 'Poppins', sans-serif;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table th {
    color: var(--gold);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    color: var(--text-light);
    font-size: 14px;
}

.admin-table tr:hover {
    background: rgba(200, 168, 86, 0.05);
}

.admin-actions {
    display: flex;
    gap: 10px;
}

.admin-btn {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-btn.edit {
    background: var(--gold);
    color: var(--primary-bg);
}

.admin-btn.delete {
    background: #dc3545;
    color: white;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
}

.login-box {
    background: var(--card-bg);
    padding: 60px 50px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    border: 1px solid var(--border-gold);
}

.login-box img {
    height: 80px;
    margin-bottom: 30px;
}

.login-box h1 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 10px;
}

.login-box>p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 14px;
}

.login-box .form-group {
    text-align: left;
}

.login-error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    padding: 35px;
    text-align: center;
    border: 1px solid var(--border-gold);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-card i {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-gold);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   IMAGE LIGHTBOX / MODAL
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: lightboxFadeIn 0.3s ease;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(200, 168, 86, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--primary-bg);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(200, 168, 86, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 8px 8px;
}

/* Clickable image indicators */
.product-image img,
.product-main-image img {
    cursor: pointer;
    transition: var(--transition);
}

.product-image img:hover,
.product-main-image img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Add zoom cursor on hover */
.product-image.lightbox-enabled,
.product-main-image.lightbox-enabled {
    position: relative;
}

.product-image.lightbox-enabled::after,
.product-main-image.lightbox-enabled::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(200, 168, 86, 0.9);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.product-image.lightbox-enabled:hover::after,
.product-main-image.lightbox-enabled:hover::after {
    opacity: 1;
}

/* Lazy loading image state */
img[loading="lazy"] {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lightbox.active {
        padding: 10px;
    }

    .lightbox-image {
        max-height: 85vh;
        border-radius: 4px;
    }

    .lightbox-caption {
        font-size: 14px;
        padding: 12px;
    }

    .product-image.lightbox-enabled::after,
    .product-main-image.lightbox-enabled::after {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-image {
        max-height: 80vh;
    }
}

/* Prevent body scroll when lightbox is active */
body.lightbox-active {
    overflow: hidden;
}

.footer-copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding-top: 30px;
}

.footer-copyright a {
    color: var(--gold);
    transition: var(--transition);
}

.footer-copyright a:hover {
    color: var(--gold-light);
}