* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    font-size: 14px;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #daa520;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #daa520;
}

.header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
}

.navbar {
    padding: 5px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-box {
    background: transparent;
    border: 3px solid #daa520;
    color: #daa520;
    padding: 8px 25px;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.logo-box:hover {
    background: #daa520;
    color: #fff;
    transform: scale(1.05);
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo p {
    color: #daa520;
    font-size: 0.9rem;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    font-size: 16px;
    border-radius: 25px;
}

.nav-link:hover {
    color: #daa520;
    background: rgba(218, 165, 32, 0.1);
}

.nav-link.active {
    color: #fff;
    background: #daa520;
}

.nav-link.search-icon {
    padding: 10px 15px;
    color: #daa520;
    font-size: 18px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.1);
}

.nav-link.search-icon:hover {
    color: #b8860b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-up 8s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(2px);
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 35%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 65%;
    animation-delay: 5s;
    animation-duration: 10s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 80%;
    animation-delay: 8s;
    animation-duration: 12s;
}

.bubble:nth-child(7) {
    width: 25px;
    height: 25px;
    left: 90%;
    animation-delay: 4s;
    animation-duration: 11s;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        transform: translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(20px) scale(1.1);
        opacity: 0.8;
    }
    100% {
        bottom: 110vh;
        transform: translateX(-20px) scale(0.9);
        opacity: 0;
    }
}

.about h2::before,
.products h2::before,
.services h2::before,
.contact h2::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: -1;
}

.header-bubble {
    position: absolute;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(184, 134, 11, 0.1) 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: header-float 4s infinite ease-in-out;
    pointer-events: none;
}

.header-bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: -30px;
    top: 20px;
    animation-delay: 0s;
}

.header-bubble:nth-child(2) {
    width: 15px;
    height: 15px;
    right: -25px;
    top: 10px;
    animation-delay: 1s;
}

.header-bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 50%;
    top: -30px;
    animation-delay: 2s;
}

@keyframes header-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.5;
    }
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    flex: 1;
    color: #fff;
    max-width: 600px;
    margin-left: 50px;
    position: relative;
    z-index: 3;
    padding-top: 100px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #FFD700;
    color: #333;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #daa520;
    border: 2px solid #daa520;
}

.btn-outline:hover {
    background: #daa520;
    color: #fff;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    padding-top: 200px;
}

.hero-slider {
    width: 400px;
    height: 400px;
    position: relative;
}

.slide {
    position: absolute;
    width: 280px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide i {
    font-size: 4rem;
    color: #daa520;
    margin-bottom: 1rem;
}

.slide h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #daa520;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image i {
    font-size: 15rem;
    color: #daa520;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    max-width: 600px;
    height: 550px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.products {
    padding: 80px 0;
    background: #fff;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.product-slide.active {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1rem 1rem;
    color: #000;
    font-weight: 600;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.product-card ul {
    list-style: none;
    margin: 0 1rem 1.5rem;
    padding: 0;
}

.product-card li {
    padding: 0.3rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.product-card li:last-child {
    border-bottom: none;
}

.product-card .btn {
    margin: 0 1rem 1.5rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card:hover .product-slideshow {
    transform: scale(1.05);
}

.product-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.slideshow-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide-image.active {
    opacity: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: background 0.3s ease;
    z-index: 2;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.product-icon i {
    font-size: 2rem;
    color: #fff;
}

.product-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.product-card li:last-child {
    border-bottom: none;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #333;
}

.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: #daa520;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #8B4513 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #daa520;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 0.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 215, 0, 0.25);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form button {
    display: block;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.15);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group select option {
    background: #333;
    color: #fff;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 180px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 180'%3E%3Cpath d='M0,90 C150,180 350,0 600,90 C850,180 1050,0 1200,90 L1200,180 L0,180 Z' fill='%23f8f9fa'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 180px;
    animation: wave 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-40px) translateX(-10px);
    }
    50% {
        transform: translateY(-60px) translateX(0);
    }
    75% {
        transform: translateY(-40px) translateX(10px);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #daa520;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #daa520;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #daa520;
    color: #fff;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #daa520;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8860b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .navbar {
        padding: 15px 20px;
        border-radius: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        border-top: 3px solid #daa520;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: #333;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #daa520;
    }

    .nav-link.search-icon {
        color: #daa520;
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        margin-bottom: 2rem;
        padding-top: 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-slider {
        width: 280px;
        height: 280px;
    }

    .page-banner {
        min-height: 300px;
        padding: 120px 20px 80px;
        margin-top: -80px;
        padding-top: 120px;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }

    .page-banner p {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 120px 20px 80px;
        margin-top: -80px;
        padding-top: 120px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-image i {
        font-size: 8rem;
    }

    .about-image img {
        max-width: 400px;
        height: 350px;
        border-radius: 10px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        min-height: 250px;
        padding: 120px 15px 60px;
        margin-top: -80px;
        padding-top: 120px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .page-banner p {
        font-size: 1rem;
    }

    .page-header {
        padding: 120px 15px 60px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: -80px;
    padding-top: 180px;
    overflow: hidden;
}

.page-banner .bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-up 10s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
}

.page-banner .bubble::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(2px);
}

.page-banner .bubble:nth-child(1) {
    width: 35px;
    height: 35px;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.page-banner .bubble:nth-child(2) {
    width: 50px;
    height: 50px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.page-banner .bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.page-banner .bubble:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-delay: 2s;
    animation-duration: 16s;
}

.page-banner .bubble:nth-child(5) {
    width: 30px;
    height: 30px;
    left: 85%;
    animation-delay: 6s;
    animation-duration: 12s;
}

.page-banner-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.page-banner-slide.active {
    opacity: 1;
}

.page-banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.page-banner .container {
    position: relative;
    z-index: 3;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-header {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: -80px;
    padding-top: 180px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

.product-category {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.product-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 400'%3E%3Cdefs%3E%3ClinearGradient id='goldGradient' x1='0%' y1='0%' x2='100%' y2='100%'%3E%3Cstop offset='0%' style='stop-color:rgba(218,165,32,0.4);stop-opacity:1' /%3E%3Cstop offset='100%' style='stop-color:rgba(184,134,11,0.4);stop-opacity:1' /%3E%3C/linearGradient%3E%3Canimate id='float1' attributeName='cy' values='120;100;120' dur='4s' repeatCount='indefinite'/%3E%3Canimate id='float2' attributeName='cy' values='180;160;180' dur='5s' repeatCount='indefinite'/%3E%3Canimate id='float3' attributeName='cy' values='250;230;250' dur='6s' repeatCount='indefinite'/%3E%3Canimate id='float4' attributeName='cy' values='320;300;320' dur='4.5s' repeatCount='indefinite'/%3E%3Canimate id='float5' attributeName='cy' values='100;80;100' dur='5.5s' repeatCount='indefinite'/%3E%3Canimate id='float6' attributeName='cy' values='160;140;160' dur='3.5s' repeatCount='indefinite'/%3E%3C/defs%3E%3Cpath d='M70,50 C150,20 200,80 300,50 S450,20 550,50 S630,80 630,50' stroke='url(%23goldGradient)' stroke-width='3' fill='none' opacity='0.8'/%3E%3Ccircle cx='60' cy='120' r='28' fill='url(%23goldGradient)' opacity='0.25'%3E%3Canimate attributeName='cy' values='120;100;120' dur='4s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='640' cy='100' r='32' fill='url(%23goldGradient)' opacity='0.22'%3E%3Canimate attributeName='cy' values='100;80;100' dur='5.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='80' cy='180' r='35' fill='url(%23goldGradient)' opacity='0.2'%3E%3Canimate attributeName='cy' values='180;160;180' dur='5s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='620' cy='160' r='25' fill='url(%23goldGradient)' opacity='0.3'%3E%3Canimate attributeName='cy' values='160;140;160' dur='3.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='50' cy='250' r='38' fill='url(%23goldGradient)' opacity='0.18'%3E%3Canimate attributeName='cy' values='250;230;250' dur='6s' repeatCount='indefinite'/%3E%3C/circle%3E%3Ccircle cx='650' cy='280' r='33' fill='url(%23goldGradient)' opacity='0.21'%3E%3Canimate attributeName='cy' values='280;260;280' dur='4.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/svg%3E");
    background-size: 700px 400px;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.product-category:nth-child(even) {
    background: #fff;
}

.product-category h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.product-category .container {
    position: relative;
    z-index: 1;
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.category-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.product-category h2::before,
.cta-section h2::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: -1;
}

.product-category h2,
.cta-section h2 {
    position: relative;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #8B4513 50%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='80' cy='80' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='50' cy='10' r='1' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='10' cy='60' r='1' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='90' cy='40' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: #fff;
    color: #daa520;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #b8860b;
}

.values {
    padding: 80px 0;
    background: #fff;
}

.values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.values h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: #daa520;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1rem;
}

.member-image i {
    font-size: 3rem;
    color: #daa520;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.team-member p:first-of-type {
    color: #daa520;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p:last-of-type {
    color: #666;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    border-radius: 5px;
}

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #8B4513 50%, #1a1a1a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #daa520;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.product-slide.active {
    opacity: 1;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #daa520;
    color: #fff;
}

.modal-header {
    background: linear-gradient(135deg, #FFD700 0%, #8B4513 50%, #1a1a1a 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.modal-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.modal-slide.active {
    opacity: 1;
}

.modal-info h4 {
    color: #daa520;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.modal-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.modal-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #daa520;
    font-weight: bold;
}

.modal-specs {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.modal-specs p {
    margin: 0.5rem 0;
    color: #555;
}

.download-brochure {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-brochure:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 25px;
}

.dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    color: #daa520;
    background: rgba(218, 165, 32, 0.1);
}

.dropdown-menu li:first-child .dropdown-link {
    border-radius: 10px 10px 0 0;
}

.dropdown-menu li:last-child .dropdown-link {
    border-radius: 0 0 10px 10px;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 0;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
        box-shadow: none;
        border-left: 3px solid #daa520;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle::after {
        content: '+';
        font-size: 16px;
        right: 15px;
    }
    
    .dropdown.active .dropdown-toggle::after {
        content: '-';
    }
    
    .dropdown-link {
        padding: 15px 30px;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown-menu li:first-child .dropdown-link,
    .dropdown-menu li:last-child .dropdown-link {
        border-radius: 0;
    }
}
