* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}
/* reCAPTCHA */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
}
/* Animated gradient background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(218, 165, 32, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 0% 100%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 100%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Header */
header {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
}

.logo-img {
    width: 350px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.5));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(218, 165, 32, 0.8));
    }
}

.logo-text {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 12px;
    color: #fff;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-content {
    max-width: 900px;
}

.coming-soon-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(218, 165, 32, 0.5);
    padding: 10px 35px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #DAA520;
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.coming-soon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    padding: 0;
    background: transparent;
    border: none;
    max-width: 900px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.countdown-number {
    font-size: 64px;
    font-weight: 100;
    color: #DAA520;
    letter-spacing: 2px;
    line-height: 1;
    font-family: 'Helvetica Neue', sans-serif;
    text-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 300;
}

.countdown-separator {
    font-size: 48px;
    color: rgba(218, 165, 32, 0.4);
    font-weight: 100;
    margin: 0 -10px;
    align-self: flex-start;
    margin-top: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

h1 {
    font-size: 82px;
    font-weight: 100;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 8px;
}

.tagline {
    font-size: 24px;
    color: #DAA520;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 3px;
}

.divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    margin: 40px auto;
}

.description {
    font-size: 17px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 120px 0;
    border-top: 1px solid rgba(218, 165, 32, 0.15);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: 6px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.service-card {
    background: #0a0a0a;
    padding: 50px 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(218, 165, 32, 0.02);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #DAA520;
    font-weight: 300;
    letter-spacing: 2px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 120px 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.15);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.contact p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-input-wrapper {
    display: flex;
    gap: 0;
    border: 1px solid rgba(218, 165, 32, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 20px 30px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    outline: none;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    padding: 20px 50px;
    background: transparent;
    color: #DAA520;
    border: 1px solid rgba(218, 165, 32, 0.3);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(218, 165, 32, 0.1);
    transition: left 0.4s ease;
}

.contact-form button:hover::before {
    left: 0;
}

.contact-form button:hover {
    color: #fff;
}

/* Footer */
footer {
    padding: 60px 20px;
    border-top: 1px solid rgba(218, 165, 32, 0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(218, 165, 32, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(218, 165, 32, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a:hover {
    border-color: #DAA520;
    color: #fff;
}

/* Responsive - General */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-container {
        gap: 30px;
    }

    .countdown-number {
        font-size: 52px;
    }

    .countdown-separator {
        font-size: 40px;
    }

    .countdown-item {
        min-width: 85px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo-img {
        width: 200px;
    }

    .logo-text {
        font-size: 32px;
        letter-spacing: 8px;
    }

    h1 {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .services {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 20px;
    }

    .countdown-container {
        gap: 20px;
        margin: 40px auto;
    }

    .countdown-item {
        min-width: 70px;
    }

    .countdown-number {
        font-size: 38px;
    }

    .countdown-separator {
        font-size: 30px;
        margin-top: 10px;
    }

    .countdown-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 12px;
        margin: 30px auto;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .countdown-separator {
        font-size: 22px;
        margin-top: 8px;
    }

    .countdown-label {
        font-size: 8px;
    }
}