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

body {
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.8s ease;
}

.splash-content {
    text-align: center;
}

.splash-title {
    margin-bottom: 2rem;
}

.splash-title span {
    display: block;
}

.splash-title span:first-child {
    color: #D4AF37;
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.splash-title span:last-child {
    font-size: 1.8rem;
    margin-top: 0.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.enter-site-btn {
    background: transparent;
    color: white;
    border: 2px solid #D4AF37;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-weight: 500;
}

.enter-site-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    transition: all 0.4s ease;
    z-index: -1;
}

.enter-site-btn:hover {
    color: black;
}

.enter-site-btn:hover::before {
    left: 0;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 5% 5% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-content h1 span:first-child {
    color: white;
}

.hero-content h1 span:last-child {
    color: #D4AF37;
    font-weight: bold;
    margin-top: 0.5rem;
}

.hero-text {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn {
    background: #D4AF37;
    color: black;
    padding: 1.2rem 3.5rem;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 500;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    background: #e5c04c;
}

/* Stats Section */
.hero-stats {
    width: 100%;
    max-width: 500px;
    margin: 4rem auto 0 auto;
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.stat {
    text-align: center;
    position: relative;
}

.stat .number {
    display: block;
    font-size: 6rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
    background: linear-gradient(45deg, #D4AF37, #e5c04c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s infinite;
}

.stat .label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.6;
    font-weight: 400;
}

/* Add shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Main Content Visibility */
.main-content {
    min-height: 100vh;
    position: relative;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.main-content.visible {
    opacity: 1;
    visibility: visible;
}

/* Splash Screen Hidden State */
.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 100px 1rem 2rem 1rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-stats {
        margin: 2rem 1rem;
        padding: 2rem;
    }

    .stat .number {
        font-size: 4.5rem;
    }

    .stat .label {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .cta-buttons {
        padding: 0 1rem;
    }
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Ensure main content is properly positioned */
.main-content {
    min-height: 100vh;
    position: relative;
    width: 100%;
}

/* Add these styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #111;
    padding: 3rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    backdrop-filter: none;
}

.contact-modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #D4AF37;
}

.modal-content h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group input:valid {
    border-color: #D4AF37;
    outline: none;
}

.form-group input:focus + label,
.form-group input:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #D4AF37;
    background: #111;
    padding: 0 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #D4AF37;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e5c04c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Add transition to main content */
.main-content {
    transition: all 0.3s ease;
}

.main-content.blur > *:not(.contact-modal) {
    filter: blur(5px);
}

/* Add these styles */
.pricing-section {
    padding: 60px 5%;
    background: linear-gradient(to bottom, #000, #111);
    text-align: center;
}

.pricing-section h2 {
    color: #D4AF37;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.pricing-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #D4AF37;
}

.pricing-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.onboarding, .monthly {
    text-align: center;
}

.amount {
    font-size: 2.2rem;
    color: #D4AF37;
    font-weight: bold;
}

.label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.price-features {
    margin: 1.5rem 0;
}

.price-features ul {
    list-style: none;
    padding: 0;
}

.price-features li {
    color: white;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-cta {
    display: inline-block;
    background: #D4AF37;
    color: black;
    padding: 1rem 3rem;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.price-cta:hover {
    background: #e5c04c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.price-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.price-note {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
}

.price-note p:first-child {
    color: #D4AF37;
    font-weight: 500;
    margin-bottom: 1rem;
}

.price-note p:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2rem;
    }

    .price-description,
    .price-note {
        padding: 1rem;
        font-size: 0.95rem;
    }
} 

/* Update the button hover effects */
.primary-btn, .price-cta, .submit-btn, .enter-site-btn {
    transition: all 0.3s ease;
}

.primary-btn:hover, .price-cta:hover, .submit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    background: #e5c04c;
}

.enter-site-btn:hover {
    transform: scale(1.05);
}

/* Optional: Add a slight push effect when clicking */
.primary-btn:active, .price-cta:active, .submit-btn:active, .enter-site-btn:active {
    transform: scale(0.98);
}

/* Add these styles for the button highlight effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.primary-btn.highlight {
    animation: pulse 0.5s ease-in-out;
}

/* About Section Styles */
.about-section {
    padding: 80px 5%;
    background: linear-gradient(to bottom, #111, #000);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-section h2 {
    color: #D4AF37;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-text .highlight {
    color: #D4AF37;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.feature {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 1rem;
    }

    .about-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem;
    }
} 

/* Add floating phone button styles */
.floating-phone {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #D4AF37;
    color: black;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.floating-phone:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
    background: #e5c04c;
}

.phone-icon {
    font-size: 1.2rem;
    animation: bounce 1s infinite;
}

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

/* Mobile responsive styles */
@media (max-width: 768px) {
    .floating-phone {
        padding: 10px 16px;
        font-size: 0.8rem;
        right: 10px;
        bottom: 20px;
    }
    
    .phone-icon {
        font-size: 1rem;
    }
} 

/* Add styles for the guarantee message */
.price-guarantee {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #D4AF37;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-icon {
    color: #D4AF37;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.price-guarantee p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .price-guarantee {
        padding: 1rem;
        margin: 1.5rem 0;
    }
} 

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem 5%;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.footer-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 0.8rem;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4AF37;
}

.footer-contact .divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem;
        margin-top: 3rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-contact .divider {
        display: none;
    }
} 