:root {
    --gold: #FFD700;
    --navy: #232B38;
    --white: #fff;
    --light-bg: #F8F9FA;
    --gray: #6C757D;
    --font-main: 'Poppins', 'Montserrat', Arial, sans-serif;
}

body {
    font-family: var(--font-main);
    background: var(--light-bg);
    color: var(--navy);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 0 4px 24px rgba(35,43,56,0.12);
    font-family: var(--font-main);
    animation: fadeInDown 1s ease-out;
    background: linear-gradient(to right, #fff, #E0E0E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
    color: #E0E0E0;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s both;
    color: #BDBDBD;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 700;
    border-radius: 30px;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 24px rgba(35,43,56,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.hero-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(35,43,56,0.18);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(90deg, var(--gold) 0%, #ffe066 100%);
    overflow: hidden;
    text-align: center;
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(35,43,56,0.12);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.cta-section .btn-light {
    font-size: 1.2rem;
    padding: 0.75rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 1rem;
    background: var(--navy);
    color: var(--gold);
    border: none;
    box-shadow: 0 4px 24px rgba(35,43,56,0.12);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cta-section .btn-light:hover {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 8px 32px rgba(35,43,56,0.18);
}

/* Footer Styles */
.site-footer {
    background: #2C3E50;
    color: #A0AEC0;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.site-footer p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #E0E0E0;
}


.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FF6B6B;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.site-footer h5 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
    border-radius: 3px;
}

.site-footer ul {
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 15px;
}

.site-footer ul li a {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-size: 1.1rem;
}

.site-footer ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.site-footer ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.site-footer ul li a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li i {
    color: #FF6B6B;
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 5px;
    transition: transform 0.3s ease;
}

.contact-info li:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem;
    color: #BDBDBD;
}

.footer-links a {
    color: #BDBDBD;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes patternMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 100px;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .site-footer {
        padding: 60px 0 20px;
    }
    
    .site-footer h5 {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 1.3rem;
    }
    
    .cta-section .lead {
        font-size: 1.2rem;
    }
    
    .social-links {
        text-align: center;
    }
    
    .site-footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .site-footer ul li {
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
    
    .footer-links a {
        display: block;
        margin: 8px 0;
    }
}

.bg-light {
    background: var(--light-bg) !important;
} 