/* Custom Variables */
:root {
    --primary-color: #DC2626;
    --secondary-color: #F97316;
    --accent-color: #FBBF24;
    --background-color: #FFFFFF;
    --text-color: #1F2937;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    padding-top: 76px;
}

/* Navigation */
.navbar {
    background-color: var(--background-color) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    margin-top: -76px;
}

.hero-section h1 {
    font-weight: 800;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-color);
}

.btn-warning:hover {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: var(--text-color);
}

/* Section Headers */
h2 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 3rem;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Icons */
.fa-3x {
    color: var(--primary-color);
}

/* Contact Form */
.form-control {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

/* Footer */
footer {
    background-color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 50px 0;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--background-color);
    padding: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--background-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.service-features li {
    margin: 10px 0;
    color: var(--text-color);
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 8px;
}

/* Feature Boxes */
.feature-box {
    padding: 30px;
    background: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--background-color);
}

.feature-content h5 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-stats span {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact-info-wrapper {
    height: 100%;
}

.contact-info-card {
    background: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.method-details h5 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.method-details a,
.method-details span {
    color: var(--text-color);
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group-text {
    background: var(--primary-color);
    border: none;
    color: var(--background-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.btn-primary {
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

/* About Section Styles */
.divider-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.divider-custom .line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.divider-custom .icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 1rem;
}

.about-image-wrapper {
    position: relative;
    padding: 1.5rem;
}

.about-image-main {
    position: relative;
    z-index: 1;
}

.about-image-main img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image-main img {
    transform: translateY(-10px);
}

.about-image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.experience-badge {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.achievement-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.achievement-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image-float {
        position: relative;
        margin-top: -3rem;
        margin-right: 1rem;
    }
}

@media (max-width: 576px) {
    .achievement-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.policy-section {
    position: relative;
}

.policy-section h3 {
    color: var(--text-color);
    font-weight: 600;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .policy-section {
        padding: 1rem;
    }
}

/* Close Button Styles */
.close-button {
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.close-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.close-button i {
    font-size: 1.1rem;
} 