/* FKIT Agency Custom Styles */

:root {
    --primary-color: #0066cc;
    --accent-color: #00bcd4;
    --text-color: #0066cc;
    --footer-bg: #003d99;
}

/* Primary Color - Blue */
.text-primary,
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color) !important;
}

/* Text Color - Blue */
p, span, a {
    color: var(--text-color) !important;
}

/* Accent Color */
.text-accent,
.btn-cta,
.accent-line {
    color: var(--accent-color) !important;
}

/* Button Styling */
.btn-cta,
.order-now-btn {
    background-color: var(--accent-color) !important;
    color: white !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover,
.order-now-btn:hover {
    background-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1fa851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Footer Styling */
footer {
    background-color: var(--footer-bg) !important;
    color: white !important;
}

footer p, footer a, footer span {
    color: white !important;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
}

.service-card h3 {
    color: var(--primary-color) !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-cta,
    .order-now-btn,
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
