/* Custom styles for Telecom Leads website */

/* Variables */
:root {
    /* Primary Colors */
    --dark-blue: #003366;
    --light-blue: #66B2FF;
    --white: #FFFFFF;
    
    /* Secondary Colors */
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    
    /* Glowing/Accent Colors */
    --electric-cyan: #00FFFF;
    --neon-green: #00FF00;
    --magenta: #FF00FF;
    
    /* Text Colors */
    --dark-text: #1A1A1A;
    --light-text: #F5F5F5;
    
    /* Gray shades */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

/* General styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.5;
}

/* Typography */
h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

/* Buttons */
.btn-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

.btn-accent {
    background-color: var(--electric-cyan);
    border-color: var(--electric-cyan);
    color: var(--dark-blue);
}

.btn-accent:hover {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--dark-blue);
}

/* Card hover effects */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Text hover effects */
.hover-text-white:hover {
    color: var(--white) !important;
}

/* Provider plans page */
.provider-logo {
    max-height: 80px;
    object-fit: contain;
}

/* Plan cards */
.card-badge {
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer styles */
.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--electric-cyan);
    color: var(--dark-blue) !important;
}