/* Custom CSS to match React/Tailwind styling */

:root {
    --red-500: #dc2626;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

/* Custom color classes */
.text-red { color: var(--red-500) !important; }
.bg-red { background-color: var(--red-500) !important; }
.btn-red {
    background-color: var(--red-500);
    border-color: var(--red-500);
    color: white;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-red:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    color: white;
}

.bg-slate-600 { background-color: var(--slate-600) !important; }
.bg-slate-700 { background-color: var(--slate-700) !important; }
.bg-slate-800 { background-color: var(--slate-800) !important; }

.text-light-gray { color: var(--gray-300) !important; }

/* Header Styles */
.logo {
    height: 80px;
    width: auto;
}

.social-icon {
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--red-500);
}

/* Navigation */
.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--red-500) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    color: #e5e7eb;
}

.hero-tagline {
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 500;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--slate-600), transparent);
}

/* Stats Section */
.stats-section {
    background-color: var(--slate-700);
}

.stat-number {
    color: var(--red-500);
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.service-icon i {
    color: var(--red-500);
}

/* Feature Items */
.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background-color: var(--slate-700);
}

/* Footer */
.footer-logo-img {
    height: 4rem;
    width: auto;
}

.footer-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--red-500);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-content {
        text-align: center;
    }
}

/* Custom button styles */
.btn {
    border-radius: 0;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Card hover effects */
.card {
    transition: all 0.3s ease;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

/* Form specific styles */
.form-control {
    border-radius: 0;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--red-500);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

/* Page specific top padding */
/* .pt-header {
    padding-top: 120px;
} */

/* Quote form styles */
.quote-form .form-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

/* Benefits cards */
.benefit-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

/* Services grid */
.services-grid {
    gap: 2rem;
}

/* About page specific */
.about-hero {
    background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-600) 100%);
}

.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Contact page specific */
.contact-info-card {
    background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-600) 100%);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-500);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Additional utility classes */
.text-gray-900 { color: var(--gray-900) !important; }
.text-gray-600 { color: var(--gray-600) !important; }
.text-gray-300 { color: var(--gray-300) !important; }
.bg-gray-50 { background-color: #f9fafb !important; }

/* Ensure proper spacing */
.section-spacing {
    padding: 5rem 0;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Custom spacing utilities */
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }