/* Home Page CSS - Piece of Nusa - Full Screen Version */

/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container - Full Width */
.container {
    width: 100%;
    min-height: 100vh;
    background: #e6d2b5;
    box-shadow: none;
    border-radius: 0;
}

/* Navbar - Modern Design */
.navbar {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(139, 69, 19, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 60px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

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

.logo-container:hover::before {
    left: 100%;
}

.logo-container:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo-container:hover .logo-image {
    transform: rotate(5deg) scale(1.1);
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    overflow: hidden;
}

.menu a::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: left 0.5s;
}

.menu a:hover::before {
    left: 100%;
}

.menu a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

/* Hero Section - Full Screen with Image */
.hero-section {
    background-image: linear-gradient(rgba(139, 69, 19, 0.7), rgba(160, 82, 45, 0.7)), url('gambar/inibuatsampul.jpg?v=2') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 5%;
    text-align: center;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.3) 0%, rgba(160, 82, 45, 0.2) 100%);
    animation: shimmer 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

/* Fallback if no image */
.no-hero-image .hero-section {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: #3498db;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.5s;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: #3498db;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255,255,255,0.3);
}

/* Section Styles - Full Width */
.section {
    padding: 120px 5%;
    text-align: center;
    background: #e6d2b5;
    margin: 0 auto;
}

.section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: bold;
}

/* Product Grid - Full Width */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.product-card {
    background: #e6d2b5;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b4513, #a0522d, #8b4513);
    background-size: 200% 100%;
    animation: shimmerGradient 3s ease-in-out infinite;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.3);
    background: linear-gradient(135deg, #e6d2b5 0%, #d4c4a8 100%);
}

@keyframes shimmerGradient {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #e6d2b5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-detail {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: bold;
    text-align: center;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.btn-detail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-detail:hover::before {
    width: 300px;
    height: 300px;
}

.btn-detail:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #7f8c8d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 2px dashed rgba(139, 69, 19, 0.2);
    margin: 0 auto;
    max-width: 600px;
    transition: all 0.3s ease;
}

.product-grid:has(.no-products) {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr;
}

.no-products:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    border-color: rgba(139, 69, 19, 0.3);
}

.placeholder-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.no-products h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3e2723;
    font-weight: bold;
    
}

.no-products p {
    font-size: 18px;
    color: #5d4037;
    margin-bottom: 25px;
}

/* About Section - Full Width */
.about-section {
    background: #e6d2b5;
    padding: 120px 5%;
    text-align: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-bar {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 20px 0;
}

.btn-back {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back::before {
    content: '«';
    margin-right: 8px;
    font-size: 18px;
    font-weight: bold;
}

.btn-back::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-back:hover::after {
    width: 300px;
    height: 300px;
}

.btn-back:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
}

.about-content h2 {
    font-size: 36px;
    margin: 0;
    color: #3e2723;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

.about-item {
    background: #e6d2b5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    text-align: left;
    transition: all 0.3s ease;
    padding: 40px;
}

.about-item-content {
    margin-bottom: 50px;
}

.about-item-text {
    color: #3e2723;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 45px;
}

.about-item-button {
    margin-top: 40px;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}


.about-text {
    padding: 30px;
    text-align: center;
    background: #e6d2b5;
}

.description-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #3e2723;
    font-weight: bold;
    text-align: center;
}

.about-text p {
    color: #5d4037;
    line-height: 1.8;
    font-size: 16px;
    text-align: center;
}

.no-content {
    text-align: center;
    padding: 80px 20px;
    color: #7f8c8d;
}

.btn-read-more {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-top: 30px;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Features Section - Full Width */
.features-section {
    padding: 100px 5%;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 16px;
}

/* Social Section - Modern Design */
.social {
    background: linear-gradient(135deg, #d4a574 0%, #c19a6b 100%);
    padding: 20px 5%;
    text-align: center;
    color: #3e2723;
    position: relative;
    overflow: hidden;
}

.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(160, 82, 45, 0.05) 100%);
    animation: shimmer 3s ease-in-out infinite alternate;
}

.social h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: #8b4513 !important;
    position: relative;
    overflow: hidden;
    line-height: 1;
    text-align: center;
    aspect-ratio: 1/1;
    box-sizing: border-box;
}

/* Fix Font Awesome icon positioning */
.social-icon.fab,
.social-icon.fas {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3%;
    height: 3%;
    color: #8b4513 !important;
    font-weight: 900 !important;
    line-height: 1;
    text-align: center;
    transform: rotate(0deg);
}

/* Specific Font Awesome icon styling */
.social-icon.fab,
.social-icon.fas {
    color: #8b4513 !important;
    font-weight: 90 !important;
}

/* Footer - Enhanced */
.footer {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-align: center;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.footer-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

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

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(230, 210, 181, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    color: #b8c5d6;
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact span {
    font-size: 16px;
}

.footer-hours p {
    color: #b8c5d6;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-copyright p {
    color: #8892b0;
    margin: 0;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Styles - Enhanced Wider Design */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(139, 69, 19, 0.1);
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #a0522d, #d4a574);
    background-size: 200% 100%;
    animation: shimmerGradient 3s ease-in-out infinite;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.2);
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #3e2723;
    font-weight: bold;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 69, 19, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateY(-8px) translateX(10px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.contact-icon {
    font-size: 36px;
    margin-right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.contact-item:hover .contact-icon::before {
    animation: shimmerIcon 0.6s ease-out;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

@keyframes shimmerIcon {
    0% {
        transform: rotate(45deg) translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translateX(100%);
        opacity: 0;
    }
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #3e2723;
    font-weight: 700;
}

.contact-text p {
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.contact-map {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 60px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: #3498db;
    background: #f0f8ff;
}

.map-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-placeholder small {
    color: #7f8c8d;
    font-size: 14px;
}

/* Comments Section */
.comments-section {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.comments-section h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.comments-list {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.comment-item {
    padding: 30px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.comment-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.comment-item:hover::before {
    transform: scaleY(1);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.05);
}

.comment-header strong {
    font-size: 18px;
    color: #3e2723;
    font-weight: 700;
}

.comment-date {
    color: #7f8c8d;
    font-size: 14px;
    background: rgba(139, 69, 19, 0.05);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.comment-content {
    color: #3e2723;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border-left: 4px solid #8b4513;
    position: relative;
}

.comment-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: rgba(139, 69, 19, 0.1);
    font-family: Georgia, serif;
}

.no-comments {
    text-align: center;
    padding: 80px 40px;
    color: #7f8c8d;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 249, 250, 0.5) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(139, 69, 19, 0.2);
    margin: 40px auto;
    max-width: 500px;
    transition: all 0.3s ease;
}

.no-comments:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    border-color: rgba(139, 69, 19, 0.3);
}

.no-comments .placeholder-icon {
    font-size: 80px;
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

.no-comments h4 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3e2723;
    font-weight: bold;
}

.no-comments p {
    font-size: 18px;
    color: #5d4037;
    margin-bottom: 25px;
}

/* Comment Page Styles - Enhanced Design */
.comment-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.comment-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comment-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #a0522d, #d4a574);
    background-size: 200% 100%;
    animation: shimmerGradient 3s ease-in-out infinite;
}

.comment-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.2);
}

.comment-form-section h3 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #3e2723;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.comment-form-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-radius: 2px;
}

.comment-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #3e2723;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.comments-stats {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.12);
    border: 1px solid rgba(139, 69, 19, 0.08);
    position: relative;
    overflow: hidden;
}

.comments-stats::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(160, 82, 45, 0.05) 100%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.comments-stats h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #3e2723;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.stat-card:hover::before {
    animation: shimmerCard 0.6s ease-out;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.3);
}

@keyframes shimmerCard {
    0% {
        transform: rotate(45deg) translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translateX(100%);
        opacity: 0;
    }
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.comments-list-section {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.comments-list-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b4513;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.comment-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #3e2723;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 18px;
    color: #2c3e50;
}

.comment-date {
    color: #7f8c8d;
    font-size: 14px;
}

.comment-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.btn-like {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid rgba(139, 69, 19, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    font-weight: 600;
    color: #3e2723;
    position: relative;
    overflow: hidden;
    margin: 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-like::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-like:hover::before {
    width: 150px;
    height: 150px;
}

.btn-like:hover:not(:disabled) {
    color: white;
    border-color: #8b4513;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-like:active:not(:disabled) {
    transform: translateY(-1px) scale(1.02);
}

.btn-like.liked {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.btn-like.liked:hover {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    border-color: #f44336;
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.3);
}

.btn-like.liked::before {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
}

.btn-like:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-like i {
    font-size: 16px;
}

/* Profile Styles */
.profile-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(139, 69, 19, 0.2);
}

.profile-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #8b4513;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-name {
    font-size: 42px;
    font-weight: 700;
    color: #8b4513;
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.profile-description {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

.profile-description p {
    margin: 0;
}

.profile-actions {
    margin-top: 10px;
}

.btn-profile {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
}

.no-profile {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.1);
}

.no-profile .placeholder-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.no-profile h3 {
    font-size: 28px;
    color: #8b4513;
    margin-bottom: 10px;
}

.no-profile p {
    color: #666;
    font-size: 18px;
}

/* Responsive Design - Full Screen */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section h2 {
        font-size: 36px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu a {
        margin: 5px;
    }
    
    .hero-section {
        padding: 80px 20px;
        min-height: 80vh;
        background-attachment: scroll; /* Disable parallax on mobile */
    }
    
    .hero-content h1 {
        font-size: 36px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
    
    .hero-content p {
        font-size: 16px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-description {
        max-width: 100%;
        margin: 0 auto 25px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .features-section {
        padding: 60px 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comment-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section h2 {
        font-size: 28px;
    }
    
    .features-section h2 {
        font-size: 24px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .social h3 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .product-card {
        margin: 0 10px;
    }
}
