.btn-cordros {
    background: var(--cordros-dark);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cordros:hover {
    background: var(--cordros-red);
    transform: translateY(-2px);
    color: var(--cordros-light);
}

.text-cordros-red {
    color: var(--cordros-red);
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(248, 249, 250, 0.9)
        ),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23f0f0f0" stroke-width="1"/></svg>');
    padding: 100px 0 80px;
    position: relative;
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    /* background: var(--cordros-gradient); */
}

.title-accent {
    position: relative;
    display: inline-block;
}

.title-accent:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--cordros-gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-info-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

/* Contact Icons - Red with black on hover */
.contact-icon {
    font-size: 2.5rem;
    color: var(--cordros-red);
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    color: var(--cordros-dark);
    transform: scale(1.1);
}

/* Form Styling */
.form-control,
.form-select {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--cordros-red);
    box-shadow: 0 0 0 0.25rem rgba(239, 65, 48, 0.15);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--cordros-dark);
}

/* Contact Form Card with Shadow and Hover Animation */
.form-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 35px 30px;
    transition: all 0.4s ease;
    border-top: 4px solid var(--cordros-red);
}

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

/* Contact Methods Section */
.contact-methods {
    background: #f8f9fa;
    position: relative;
}

.contact-methods:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cordros-gradient);
}

/* Map Section - Full Width */
.map-section {
    width: 100%;
    padding: 0;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    height: 450px;
    width: 100%;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--cordros-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
.animate-up {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-up.animated {
    transform: translateY(0);
    opacity: 1;
}

/* Decorative elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(239, 65, 48, 0.1) 0%,
        rgba(220, 152, 20, 0.1) 100%
    );
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .contact-info-card {
        margin-bottom: 25px;
    }

    .navbar {
        backdrop-filter: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0 50px;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}
