:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #3182ce;
    --light-bg: #f7fafc;
    --text-color: #2d3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Top Contact Bar */
.top-contact-bar {
    background: linear-gradient(135deg, #0f1419, var(--primary-color));
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-top {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-item-top {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-top:hover {
    color: white;
    transform: translateY(-1px);
}

.contact-item-top i {
    margin-right: 8px;
    font-size: 14px;
    color: var(--accent-color);
}

.social-links-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.social-link-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.social-link-top:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    top: 50px;
    /* Account for top bar height */
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 55px;
    width: auto;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Mobile responsive logo */
@media (max-width: 768px) {
    .navbar-logo {
        max-height: 45px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        max-height: 40px;
        margin-right: 8px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.6), rgba(45, 55, 72, 0.5));
    z-index: 2;
}

.hero-content {
    z-index: 3;
    text-align: center;
    color: white;
    position: relative;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicators button.active {
    background: white;
    border-color: white;
}

.hero-indicators button:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.7);
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-custom {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
    color: white;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #718096;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #4299e1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #4299e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-features {
    margin-top: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.service-features li:first-child {
    padding-top: 0;
}

.service-features li:last-child {
    padding-bottom: 0;
}

/* Services Call to Action */
.services-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* About Section Navigation */
.about-navigation {
    margin-bottom: 3rem;
}

.nav-tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.about-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.about-nav-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(49, 130, 206, 0.3);
}

.about-nav-btn i {
    font-size: 1.2rem;
}

/* About Cards */
.about-content-container {
    margin-bottom: 4rem;
}

.tab-content {
    animation: fadeInUp 0.5s ease-out;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #4299e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.8rem;
    color: white;
}

.about-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.about-card-body p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.about-point {
    margin-bottom: 1.5rem;
}

.about-point:last-child {
    margin-bottom: 0;
}

.point-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.point-header strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.about-point p {
    margin: 0;
    padding-left: 28px;
    font-size: 0.95rem;
}

/* Stats Section */
.about-stats-section {
    background: linear-gradient(135deg, var(--light-bg), #edf2f7);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.stat-item {
    padding: 1rem;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background: white;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

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

.main-location {
    border: 2px solid var(--accent-color);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #4299e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.location-body {
    text-align: center;
}

.location-body .location-icon {
    margin: 0 auto 1rem auto;
}

.location-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.location-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.location-features {
    margin-top: 1rem;
}

/* Clickable Location Cards */
.clickable-card {
    cursor: pointer;
    position: relative;
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.clickable-card:hover .location-icon {
    transform: scale(1.1);
}

.map-link-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clickable-card:hover .map-link-icon {
    opacity: 1;
    transform: scale(1.2);
    color: #2c5aa0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* Footer */
/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), #4299e1, var(--accent-color));
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.footer-logo-img {
    max-height: 150px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo h4 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.homeadvisor-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.homeadvisor-badge span {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
    padding-left: 10px;
}

.footer-link i {
    color: var(--accent-color);
    width: 16px;
    font-size: 0.9rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
}

.footer-contact-item i {
    color: var(--accent-color);
    width: 18px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-logo-img {
        max-height: 65px;
        margin-bottom: 12px;
    }
    
    .footer-logo h4 {
        font-size: 1.3rem;
        text-align: center;
    }

    .footer-title {
        text-align: center;
        font-size: 1.1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .homeadvisor-badge {
        text-align: center;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Responsive for Top Bar */
@media (max-width: 768px) {
    .top-contact-bar {
        padding: 8px 0;
        font-size: 13px;
    }

    .contact-info-top {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 10px;
    }

    .social-links-top {
        justify-content: center;
        gap: 12px;
    }

    .social-link-top {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .contact-item-top {
        font-size: 12px;
    }

    .contact-item-top i {
        font-size: 13px;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 2rem;
    }

    /* About Content */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    /* Navigation Tabs */
    .nav-tabs-container {
        flex-direction: column;
        gap: 15px;
    }

    .about-nav-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* About Cards */
    .about-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .about-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .about-card h4 {
        font-size: 1.2rem;
    }

    .about-stats-section {
        padding: 2rem 1rem;
    }

    /* Service Cards */
    .service-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .services-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .top-contact-bar {
        padding: 12px 0;
    }

    .contact-info-top {
        text-align: center;
    }

    .contact-item-top span {
        font-size: 11px;
    }

    .social-links-top {
        margin-top: 8px;
        gap: 15px;
    }

    .social-link-top {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services,
    .about,
    .contact {
        padding: 60px 0;
    }

    .about-nav-btn span {
        font-size: 0.9rem;
    }

    .point-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .about-point p {
        padding-left: 0;
    }
}

/* Write Us Button */
.btn-write-us {
    background: linear-gradient(135deg, var(--accent-color), #4299e1);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(49, 130, 206, 0.3);
}

.btn-write-us:hover {
    background: linear-gradient(135deg, #2c5aa0, var(--accent-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.5);
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn 0.3s ease-out;
    padding: 20px;
}

.contact-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-title i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.modal-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

/* Contact Form */
.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-control.error {
    border-color: #e53e3e;
    background: #fef5f5;
}

.form-control.error:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.error-message {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.btn-cancel {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-color), #4299e1);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(49, 130, 206, 0.3);
}

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #2c5aa0, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsive for Contact Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }

    .contact-modal {
        max-height: 95vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-title h3 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
        padding: 14px 24px;
    }

    .btn-write-us {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modal-header {
        padding: 1rem;
    }

    .modal-title {
        gap: 10px;
    }

    .modal-title i {
        font-size: 1.3rem;
    }

    .modal-title h3 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .form-control {
        padding: 10px 12px;
    }
}

.navbar-careers-btn {
    margin: 15px auto 0 auto;
    display: block;
    text-align: center;
    width: fit-content;
    font-size: 0.85rem;
    padding: 10px 25px;
}

/* Add this after the navbar-careers-btn styles */
@keyframes pulse {
    0% {
        box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 2px 15px rgba(16, 185, 129, 0.5);
    }

    100% {
        box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    }
}

.navbar-careers-btn {
    animation: pulse 3s ease-in-out infinite;
}

.navbar-careers-btn:hover {
    animation: none;
}