/* 
 * USA Signature Horizon - Luxury Coming Soon
 */

 :root {
    /* Luxury Color Palette */
    --bg-color: #030409;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a5;
    
    --gold-light: #f9d47c;
    --gold-main: #d4af37;
    --gold-dark: #aa8420;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Animation timing */
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, transparent 0%, #000000 100%);
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -2;
    animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-1 {
    top: -10%;
    left: 20%;
    width: 40vw;
    height: 40vw;
    background: var(--gold-main);
}

.orb-2 {
    bottom: -20%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: #1a2a44; /* Subtle deep blue contrast */
    animation-delay: -10s;
}

/* Layout Wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Header & Logo */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.logo-container {
    width: 180px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.2));
    transition: filter var(--transition-smooth), transform var(--transition-smooth);
}

.logo:hover {
    filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.4));
    transform: scale(1.02);
}

.logo-fallback {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-initials {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-main);
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    display: inline-block;
}

/* Decorative Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold-main);
    transform: rotate(45deg);
    margin: 0 15px;
    box-shadow: 0 0 10px var(--gold-main);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Interactive Form */
.options-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.input-wrapper {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
}

.input-wrapper:focus-within {
    border-color: var(--gold-main);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
    color: #000;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    position: relative;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.success-message {
    display: none;
    color: var(--gold-main);
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeIn 0.5s ease forwards;
}

/* Footer */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    color: var(--gold-main);
    border-color: var(--gold-main);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -50px) scale(1.1); }
}

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

.slide-down {
    animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

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

.fade-in {
    animation: fadeInContent 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

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

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

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

.tracking-in-expand {
    animation: tracking-in-expand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) 0.8s both;
}

@keyframes tracking-in-expand {
    0% { letter-spacing: -0.5em; opacity: 0; }
    40% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Company Info Footer Styling */
.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold-main);
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.company-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.contact-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--gold-main);
}

.contact-phones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-phones a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phones a:hover {
    color: var(--gold-main);
}

.contact-phones strong {
    color: var(--gold-light);
    font-weight: 500;
}

.separator {
    color: var(--gold-dark);
    opacity: 0.5;
    margin: 0 5px;
}

.copyright {
    margin-top: 1rem;
    opacity: 0.6;
}

/* Media Queries */
@media (max-width: 768px) {
    .wrapper {
        padding: 1.5rem;
    }
    
    .title {
        letter-spacing: 2px;
    }
    
    .input-wrapper {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .email-input {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        padding: 15px 25px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
    }
}
