/* CSS Variables for consistent theming */
:root {
    --primary-gold: #e3bb54;
    --primary-teal: #18a39e;
    --dark-bg: #1c2427;
    --light-bg: #f6f5f4;
    --text-dark: #333333;
    --text-light: #ffffff;
    --accent-teal: #008e8e;
    --gradient-overlay: rgba(28, 36, 39, 0.7);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

/* Header Styles */
#main-header {
    background: linear-gradient(135deg, rgba(227, 187, 84, 0.9), rgba(24, 163, 158, 0.9)),
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}

.navbar {
    padding: 1.5rem 0;
    background: transparent !important;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: -1px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-2px);
}

.phone-number {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem !important;
    backdrop-filter: blur(10px);
}

.hero-content {
    margin-top: 5rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-cta {
    background: var(--primary-gold);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(227, 187, 84, 0.3);
}

.btn-cta:hover {
    background: #d4a843;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(227, 187, 84, 0.4);
}

/* Partners Section */
#partners-section {
    background: var(--dark-bg);
    padding: 3rem 0;
}

.partner-logo {
    padding: 2rem 1rem;
    color: var(--text-light);
}

.partner-text {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.partner-logo small {
    color: #888;
    font-size: 0.9rem;
}

/* How It Works Section */
#how-it-works {
    padding: 5rem 0;
    background: var(--light-bg);
}

.process-card {
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.process-icon i {
    font-size: 3rem;
    color: white;
}

.process-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Main Content Section */
#main-content {
    background: linear-gradient(135deg, var(--dark-bg), var(--accent-teal)),
                url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
}

#main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.main-content-section {
    position: relative;
    z-index: 2;
}

.main-content-title {
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-content-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 120px 0 48px;
}

/* Features Section */
#features-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-image {
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 3rem 2rem;
}

.feature-category {
    color: var(--accent-teal);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Final CTA Section */
#final-cta {
    background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 200"><path d="M0,50 Q250,150 500,50 T1000,50 L1000,200 L0,200 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h1 {
    color: var(--dark-bg);
    text-shadow: none;
    margin-bottom: 2rem;
}

.cta-content p {
    color: var(--dark-bg);
    font-size: 1.4rem;
}

.btn-cta-final {
    background: var(--primary-teal);
    border: none;
    padding: 1.2rem 4rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(24, 163, 158, 0.3);
}

.btn-cta-final:hover {
    background: #159d98;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(24, 163, 158, 0.4);
    color: white;
}

/* Footer Styles */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 800px;
}

footer .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer .nav-link:hover {
    color: var(--primary-gold) !important;
}

.footer-disclaimer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-disclaimer p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.contact-info {
    font-size: 1rem !important;
    opacity: 1 !important;
}

.copyright {
    font-size: 0.9rem !important;
    opacity: 0.6 !important;
    margin-bottom: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .main-content-text {
        margin: 60px 0 24px;
        font-size: 1.1rem;
    }

    .process-card {
        margin: 2rem 0;
    }

    .feature-card {
        margin: 3rem 0;
    }

    .btn-cta,
    .btn-cta-final {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .process-icon {
        width: 100px;
        height: 100px;
    }

    .process-icon i {
        font-size: 2.5rem;
    }

    .feature-content {
        padding: 2rem 1.5rem;
    }

    .navbar {
        padding: 1rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-gold {
    color: var(--primary-gold);
}

.text-teal {
    color: var(--primary-teal);
}

.bg-gold {
    background-color: var(--primary-gold);
}

.bg-teal {
    background-color: var(--primary-teal);
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
    border-radius: 20px;
}
