/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Custom Styles */
.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

/* Custom Hover Effects */
.hover-scale {
    transition: transform 0.2s ease-in-out;
}

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

/* Custom Gradients */
.gradient-primary {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

/* Custom Shadows */
.shadow-soft {
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
}

/* Custom Transitions */
.transition-smooth {
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
    background: #0F172A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1E293B;
}

/* Focus States */
.focus-ring {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.3);
}

/* Custom Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

/* BrokerPower-specific styles */
.text-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

/* Button styles */
.btn-primary {
    background-color: #0F172A;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1E293B;
}

.btn-secondary {
    background-color: white;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
}

/* Card styles */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #0F172A;
}

/* Spacing utilities */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

/* Form styles */
input, textarea, select {
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #0F172A;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

/* Service list styles */
.service-list li {
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0F172A;
    font-weight: bold;
}

/* Logo styles */
.logo {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation styles */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0F172A;
    transition: width 0.3s ease;
}

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

/* Footer styles */
.footer-link {
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
} 