.navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    background: white;
    padding: 5px;
    border-radius: 8px;
    height: 50px;
    margin-right: 15px;
}

.text-primary { color: #dc2626 !important; }
.bg-primary { background-color: #dc2626 !important; }
.bg-soft-primary { background-color: rgba(220, 38, 38, 0.1) !important; }
.btn-outline-primary { border-color: #dc2626; color: #dc2626; }
.btn-outline-primary:hover { background-color: #dc2626; color: white; }
.border-primary { border-color: #dc2626 !important; }

.btn-primary {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #fff !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    background-color: #991b1b !important;
    border-color: #991b1b !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3) !important;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 38, 38, 0.25) !important;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

h4, h5, h6, .btn {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    font-weight: 900;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.card-title {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('../../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 160px 0;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.hero h1 {
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Services Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.service-icon {
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 1rem;
    display: inline-block;
}

.card-title {
    font-weight: 700;
    color: #000000;
}

/* Pricing Section */
.princing-plan {
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.princing-plan .card-header {
    background: transparent !important;
    border: none;
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626 !important;
    padding-bottom: 0;
}

.princing-plan .card-title {
    font-size: 2rem;
    margin: 1.5rem 0;
}

/* Testimonials */
.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #dc2626;
    border-radius: 2px;
}

footer {
    background: #000000 !important;
    padding: 60px 0 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #dc2626;
    transform: translateY(-5px);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 100px 0; }
}

/* Page Headers for subpages */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../../img/hero.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
