* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b5a3c;
    --dark-color: #2c2417;
    --light-color: #f5f1e8;
    --text-color: #333;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1410 0%, #2c2417 50%, #1a1410 100%);
    overflow-x: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: 20px;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #d4a574, transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5a3c, transparent);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #d4a574, transparent);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(20px);
    }
    50% {
        transform: translateY(-40px) translateX(-20px);
    }
    75% {
        transform: translateY(-20px) translateX(20px);
    }
}

.content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

header {
    margin-bottom: 40px;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a574, #8b5a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 20px;
    color: #666;
    font-style: italic;
    font-weight: 300;
}

.coming-soon-section h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
    margin-bottom: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f5f1e8, #e8e2d5);
    border-radius: 15px;
    border: 2px solid #d4a574;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.service-card:nth-child(2) .service-icon {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) .service-icon {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) .service-icon {
    animation-delay: 0.3s;
}

.service-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.newsletter {
    margin: 40px 0;
}

.newsletter-title {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 14px 18px;
    border: 2px solid #d4a574;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
}

.email-form button {
    padding: 14px 30px;
    background: linear-gradient(135deg, #d4a574, #8b5a3c);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

.email-form button:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    color: #27ae60;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4a574, #8b5a3c);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}

footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    color: #666;
}

footer p {
    font-size: 14px;
    margin: 5px 0;
}

footer strong {
    color: var(--primary-color);
    font-weight: 600;
}

.copyright {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .logo {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .coming-soon-section h2 {
        font-size: 28px;
    }

    .description {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .email-form input {
        max-width: 100%;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }

    .logo {
        font-size: 28px;
    }

    .tagline {
        font-size: 14px;
    }

    .coming-soon-section h2 {
        font-size: 24px;
    }

    .description {
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .service-card p {
        font-size: 12px;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form button {
        width: 100%;
    }

    .social-links {
        gap: 15px;
    }
}
