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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crown-icon {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #d4af37, #f4e4bc, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 50%, #ede7d9 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8b4513, #d4af37, #8b4513);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite, titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6b5b73;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nature-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.nature-icon:nth-child(2) {
    animation-delay: 0.3s;
}

.nature-icon:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* Porcelain Shapes */
.porcelain-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 228, 188, 0.6));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f1eb 0%, #ede7d9 100%);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6b5b73;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Article Section */
.article-section {
    padding: 4rem 0;
    animation: fadeInUp 1s ease-out;
}

.main-article {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.main-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4e4bc, #d4af37);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c2c2c;
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.article-decoration {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cake-icon, .sparkle, .heart {
    font-size: 2rem;
    animation: rotate 4s ease-in-out infinite;
}

.sparkle {
    animation-delay: 1s;
}

.heart {
    animation-delay: 2s;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.article-content p:nth-child(2) {
    animation-delay: 0.2s;
}

.article-content p:nth-child(3) {
    animation-delay: 0.4s;
}

.article-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #8b4513;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.article-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #d4af37, #8b4513);
    transition: width 0.3s ease;
}

.article-link:hover::after {
    width: 100%;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.category-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mini-shape-1, .mini-shape-2, .mini-shape-3, .mini-shape-4, .mini-shape-5, .mini-shape-6 {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(244, 228, 188, 0.3));
    animation: miniFloat 6s ease-in-out infinite;
}

.mini-shape-1 { top: 10%; right: 10%; animation-delay: 0s; }
.mini-shape-2 { bottom: 10%; left: 10%; animation-delay: 1s; }
.mini-shape-3 { top: 20%; left: 20%; animation-delay: 2s; }
.mini-shape-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
.mini-shape-5 { top: 50%; right: 5%; animation-delay: 4s; }
.mini-shape-6 { bottom: 50%; left: 5%; animation-delay: 5s; }

@keyframes miniFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.featured-products {
    margin-top: 4rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-visual {
    position: relative;
    margin-bottom: 1rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-shape {
    position: absolute;
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    animation: productFloat 4s ease-in-out infinite;
}

.shape-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 8px solid transparent;
    background: linear-gradient(45deg, #d4af37, #f4e4bc) padding-box,
                linear-gradient(45deg, #8b4513, #d4af37) border-box;
}

.shape-pendant {
    width: 40px;
    height: 60px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.shape-topper {
    width: 80px;
    height: 40px;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
}

.shape-earrings {
    width: 30px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

.shape-earrings::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    width: 30px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.product-emoji {
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: emojiSpin 3s ease-in-out infinite;
}

@keyframes emojiSpin {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.blog-visual {
    height: 150px;
    position: relative;
    background: linear-gradient(135deg, #f5f1eb, #ede7d9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), rgba(244, 228, 188, 0.6));
    animation: blogShapeFloat 5s ease-in-out infinite;
}

.shape-nature {
    width: 80px;
    height: 80px;
    border-radius: 50% 0 50% 0;
}

.shape-craft {
    width: 70px;
    height: 70px;
    border-radius: 0 50% 0 50%;
}

.shape-celebration {
    width: 90px;
    height: 60px;
    border-radius: 50px;
}

.shape-care {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 10px solid rgba(212, 175, 55, 0.3);
    background: transparent;
}

.shape-story {
    width: 80px;
    height: 50px;
    border-radius: 25px 25px 0 0;
}

.shape-trends {
    width: 70px;
    height: 70px;
    transform: rotate(45deg);
    border-radius: 20%;
}

@keyframes blogShapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.blog-emoji {
    font-size: 2.5rem;
    z-index: 2;
    animation: blogEmojiPulse 2s ease-in-out infinite;
}

@keyframes blogEmojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
    animation: fadeInUp 1s ease-out;
}

.about-visual {
    position: relative;
    height: 300px;
}

.about-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-shape-1, .about-shape-2, .about-shape-3 {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(244, 228, 188, 0.4));
    animation: aboutFloat 8s ease-in-out infinite;
}

.about-shape-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.about-shape-2 {
    width: 80px;
    height: 120px;
    border-radius: 50% 0 50% 0;
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

.about-shape-3 {
    width: 90px;
    height: 90px;
    border-radius: 0 50% 0 50%;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.about-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
}

.about-icon {
    font-size: 2rem;
    animation: aboutIconBounce 3s ease-in-out infinite;
}

.about-icon:nth-child(2) {
    animation-delay: 1s;
}

.about-icon:nth-child(3) {
    animation-delay: 2s;
}

@keyframes aboutIconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.values-section {
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: valueIconRotate 4s ease-in-out infinite;
}

@keyframes valueIconRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.process-section {
    margin: 4rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.contact-icon {
    font-size: 2rem;
    animation: contactIconBounce 3s ease-in-out infinite;
}

@keyframes contactIconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c2c2c;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.form-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.form-shape-1, .form-shape-2 {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 228, 188, 0.2));
    animation: formFloat 6s ease-in-out infinite;
}

.form-shape-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.form-shape-2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes formFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.form-emoji {
    position: absolute;
    top: 50%;
    right: -20px;
    font-size: 2rem;
    animation: formEmojiFloat 4s ease-in-out infinite;
}

@keyframes formEmojiFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.custom-order-info {
    margin-top: 4rem;
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.order-step {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: stepIconPulse 3s ease-in-out infinite;
}

@keyframes stepIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.order-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #ede7d9 100%);
    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,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(212,175,55,0.1)"/><circle cx="40" cy="80" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctaTitlePulse 4s ease-in-out infinite;
}

@keyframes ctaTitlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-text {
    font-size: 1.2rem;
    color: #6b5b73;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 3rem;
    background: linear-gradient(45deg, #d4af37, #f4e4bc);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: ctaButtonGlow 3s ease-in-out infinite;
}

@keyframes ctaButtonGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        transform: translateY(0px);
    }
    50% { 
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
        transform: translateY(-3px);
    }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.cta-button::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 ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0 1rem;
    animation: fadeIn 1s ease-out;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.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: #d4af37;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: socialFloat 3s ease-in-out infinite;
}

.social-icon:nth-child(2) {
    animation-delay: 1s;
}

.social-icon:nth-child(3) {
    animation-delay: 2s;
}

@keyframes socialFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.social-icon:hover {
    transform: scale(1.2) translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-categories {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .order-steps {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .main-article {
        padding: 2rem;
    }

    .hero-icons {
        gap: 1rem;
    }

    .nature-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .main-article {
        padding: 1.5rem;
    }

    .category-card,
    .product-card,
    .blog-card,
    .value-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .hero-icons {
        flex-wrap: wrap;
    }

    .article-decoration {
        flex-wrap: wrap;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section {
        display: none;
    }

    .main {
        margin-top: 0;
    }

    body {
        background: white;
        color: black;
    }

    .main-article {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

