/* Custom Colors */
:root {
    --gold: #FFD700;
    --dark-gold: #DAA520;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
}

/* Custom Bootstrap Classes */
.bg-black {
    background-color: var(--black) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-black {
    color: var(--black) !important;
}

.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-black {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--gold);
    transform: translateY(-2px);
}

.border-gold {
    border-color: var(--gold) !important;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.hero-icon {
    font-size: 8rem;
    z-index: 2;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.protection-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.feature-icon i {
    font-size: 3rem;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.1);
}

.service-icon i {
    font-size: 2.5rem;
}

/* Insurance Cards */
.insurance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.insurance-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.insurance-icon i {
    font-size: 2rem;
    color: var(--black);
}

/* Contact Form */
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.contact-info i {
    width: 20px;
    text-align: center;
}

/* Social Links */
.social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--dark-gold) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }
    
    .hero-icon {
        font-size: 5rem;
    }
    
    .protection-ring {
        width: 200px;
        height: 200px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Utility Classes */
.shadow-gold {
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
}

.border-radius-lg {
    border-radius: 15px;
}

/* Loading Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional styles for contact page */
.border-top-gold {
    border-top: 4px solid var(--gold) !important;
} 