* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d97d3e;
    --secondary-color: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(26, 26, 26, 0.8);
    --gradient-1: linear-gradient(135deg, #d97d3e 0%, #f4a261 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
    width: 180px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(217, 125, 62, 0.3));
    transition: transform 0.3s ease;
    transform: scale(1.8);
}

.logo:hover {
    transform: scale(1.85);
}

/* Main Heading */
.main-heading {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.trademark {
    font-size: 1.2rem;
    font-weight: 400;
    margin-left: 0.2rem;
    vertical-align: super;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 300;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Coming Soon Section */
.coming-soon {
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: blink 1.5s ease-in-out infinite;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 300;
    font-style: italic;
}

/* Description */
.description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* About Section */
.about-section {
    margin: 2.5rem 0 2rem;
    text-align: left;
    animation: fadeInUp 1s ease-out 0.8s both;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(217, 125, 62, 0.2);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 4px;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    text-align: justify;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-gold {
    color: #f4a261;
    font-weight: 600;
}

/* Services Section */
.services-section {
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1rem 1.3rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(217, 125, 62, 0.2);
}

.service-item:hover {
    background: rgba(217, 125, 62, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(217, 125, 62, 0.4);
}

/* Notify Form */
.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.notify-form input::placeholder {
    color: var(--text-gray);
}

.notify-form button {
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(217, 125, 62, 0.3);
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 125, 62, 0.4);
}

.notify-form button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5rem;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0 1.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(217, 125, 62, 0.3);
}

/* Footer */
.footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 1.2s both;
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 125, 62, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem 1.5rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form button {
        width: 100%;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
    }
    
    .circle-1, .circle-2, .circle-3 {
        width: 200px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .about-text {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .about-section {
        padding: 1.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .services-section {
        margin: 1.5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.5rem;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .about-section {
        padding: 1.2rem;
    }
    
    .about-text {
        font-size: 0.8rem;
    }
}
