/* ===================================
   ANtop Constructions Custom Styles
   Brand Colors:
   - Primary Blue: #011763
   - Primary Red: #a10203
   - White: #FFFFFF
   =================================== */

/* Root Variables */
:root {
    --primary-blue: #011763;
    --primary-red: #a10203;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #555555;
}

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

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

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

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

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-blue));
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8a0202;
    border-color: #8a0202;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(161, 2, 3, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Top Header Bar */
.top-header-bar {
    background: var(--white);
    color: var(--text-color);
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1050;
    border-bottom: 1px solid rgba(1, 23, 99, 0.1);
}

.header-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.contact-item i {
    margin-right: 8px;
    color: var(--primary-red);
    font-size: 1rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

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

.social-text {
    color: var(--text-color);
    margin-right: 10px;
    font-size: 0.85rem;
}

.social-link-top {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 23, 99, 0.2);
}

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

/* Navigation */
#mainNav {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: fixed !important;
    top: 46px; /* Account for top header bar */
    border-bottom: 2px solid var(--primary-blue);
}

#mainNav.navbar-scrolled {
    top: 0;
    padding: 0.5rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-blue) !important;
}

.logo-img {
    height: 55px;
    width: auto;
    margin-right: 15px;
    border-radius: 8px;
    border: 2px solid rgba(1, 23, 99, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    border-color: var(--primary-red);
}

.brand-content {
    display: flex;
    flex-direction: column;
}

.brand-text {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.brand-tagline {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: -2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.navbar-nav .nav-link:hover .nav-icon,
.navbar-nav .nav-link.active .nav-icon {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
    background: rgba(1, 23, 99, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    background: rgba(161, 2, 3, 0.1);
}

.quote-btn {
    background: var(--white) !important;
    color: var(--primary-red) !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin-left: 10px;
    padding: 0.75rem 1.5rem !important;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.quote-btn::before {
    display: none;
}

/* Dropdown Menu */
.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 250px;
}

.dropdown-item {
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.dropdown-item i {
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
}

.dropdown-item:hover {
    background: var(--primary-red);
    color: var(--white);
}

.dropdown-item:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.dropdown-divider {
    border-top: 1px solid rgba(1, 23, 99, 0.1);
    margin: 0.5rem 0;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    border: 2px solid rgba(1, 23, 99, 0.3);
    border-radius: 6px;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--primary-red);
    background: rgba(161, 2, 3, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(161, 2, 3, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%281, 23, 99, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #023591 100%),
                url('../images/hero-bg.jpg') center center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 98px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 23, 99, 0.7);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down a {
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Preview Section */
.about-preview {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.about-preview img {
    border-radius: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background-color: var(--white);
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    margin-left: 10px;
}

.service-card-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    text-align: center;
    justify-content: center;
}

.service-card-cta .service-title,
.service-card-cta .service-description {
    color: var(--white);
}

.service-card-cta .btn-light {
    margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.feature-box {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(rgba(1, 23, 99, 0.95), rgba(161, 2, 3, 0.95)),
                url('../images/stats-bg.jpg') center center/cover fixed;
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 23, 99, 0.8);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process-section {
    background-color: var(--white);
    padding: 80px 0;
}

.process-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}

.process-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

.process-card:hover .process-icon i {
    color: var(--white);
}

.process-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Featured Projects Section */
.featured-projects {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.project-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(1, 23, 99, 0.95), rgba(161, 2, 3, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.project-info h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-info p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-category i {
    margin-right: 5px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 80px 0;
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.2;
}

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

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-red);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Service Areas Section */
.service-areas {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    border-bottom: 1px solid rgba(1, 23, 99, 0.1);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    background-color: var(--light-gray);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(0);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background-color: var(--white);
    color: var(--text-color);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    padding: 60px 0;
}

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

.cta-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 5px;
}

.footer-about h5,
.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-red);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(1, 23, 99, 0.1);
    }

    .navbar-nav .nav-link {
        text-align: left;
        margin: 0.25rem 0;
        border-radius: 6px;
        justify-content: flex-start;
        color: var(--primary-blue) !important;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(1, 23, 99, 0.1);
        color: var(--primary-red) !important;
    }
    
    .quote-btn {
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
        text-align: center;
        justify-content: center;
    }
    
    .header-contact-info {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .header-social-links {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    
    .social-text {
        display: none;
    }
    
    .top-header-bar {
        padding: 6px 0;
    }
    
    #mainNav {
        top: 40px;
    }
    
    .hero-section {
        margin-top: 100px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .process-card {
        margin-bottom: 3rem;
    }
    
    .project-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
        margin-top: 85px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-section .col-lg-4 {
        margin-top: 1.5rem;
    }

    .logo-img {
        height: 45px;
    }

    .brand-text {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .header-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .top-header-bar {
        text-align: center;
        padding: 5px 0;
    }
    
    .header-social-links {
        justify-content: center;
        margin-top: 0.25rem;
    }
    
    .social-link-top {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    #mainNav {
        top: 70px;
    }
    
    .stat-item {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-icon i {
        font-size: 2rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .testimonial-card::before {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-box,
    .service-card {
        margin-bottom: 1rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .nav-icon {
        font-size: 0.8rem;
    }
    
    .quote-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem;
    }
    
    .header-contact-info {
        display: none; /* Hide on very small screens */
    }
    
    .top-header-bar {
        padding: 4px 0;
    }
    
    #mainNav {
        top: 50px;
    }
    
    .hero-section {
        margin-top: 70px;
    }
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Page Header */
.page-header {
    height: 20vh;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #023591 100%),
                url('../images/page-header-bg.jpg') center center/cover no-repeat;
    background-blend-mode: overlay;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 97px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 23, 99, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-red);
}

.breadcrumb-item.active {
    color: var(--primary-red);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
}

/* About Section */
.about-section {
    background-color: var(--white);
    padding: 80px 0;
}

.about-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Mission Vision Values */
.mission-vision {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.mvv-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-blue);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.values-list i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1rem;
}

/* Company Stats */
.company-stats {
    background: linear-gradient(rgba(1, 23, 99, 0.9), rgba(161, 2, 3, 0.9)),
                url('../images/stats-bg-2.jpg') center center/cover fixed;
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.company-stats .stat-item {
    padding: 2rem;
}

.company-stats .stat-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.company-stats .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.company-stats .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose About */
.why-choose-about {
    background-color: var(--white);
    padding: 80px 0;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.choose-item:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.choose-item:hover .choose-icon {
    transform: scale(1.1);
}

.choose-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.choose-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.choose-content p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(1, 23, 99, 0.9), rgba(161, 2, 3, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.team-card:hover .team-social a {
    transform: translateY(0);
}

.team-social a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.team-position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.team-description {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    background-color: var(--white);
    padding: 80px 0;
}

.certification-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.certification-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.certification-card:hover img {
    transform: scale(1.1);
}

/* Services Page Styles */

/* Services Overview */
.services-overview {
    background-color: var(--white);
    padding: 80px 0;
}

.service-overview-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

.service-overview-card:hover::before {
    left: 0;
}

.service-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.service-overview-card.special-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border-top: 4px solid var(--white);
}

.service-overview-card.special-card h3,
.service-overview-card.special-card p {
    color: var(--white);
}

.service-overview-card.special-card .service-link {
    color: var(--white);
}

.service-overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-overview-card:hover .service-overview-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-overview-card.special-card .service-overview-icon {
    background: var(--white);
}

.service-overview-card.special-card .service-overview-icon i {
    color: var(--primary-blue);
}

.service-overview-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-overview-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-blue);
    gap: 12px;
}

/* Service Detail Sections */
.service-detail-section {
    background-color: var(--white);
    padding: 80px 0;
}

.service-detail-section-alt {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.service-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-content {
    padding: 0 1rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(1, 23, 99, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--primary-red);
    margin-right: 15px;
    font-size: 1.2rem;
}

.service-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-stats .stat-item {
    text-align: center;
}

.service-stats .stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.service-stats .stat-item p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Process */
.service-process {
    margin-top: 2rem;
}

.service-process h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Manpower Categories */
.manpower-categories {
    margin: 2rem 0;
}

.category-item {
    display: flex;
    align-items: flex-start;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.category-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.category-item h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-item p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Supply Grid */
.supply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.supply-category {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.supply-category:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.supply-category i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.supply-category h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.supply-category ul {
    list-style: none;
    padding: 0;
}

.supply-category li {
    color: var(--text-color);
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.supply-category li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

/* Supply Benefits */
.supply-benefits {
    margin-top: 2rem;
}

.supply-benefits h5 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.benefit-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: var(--primary-red);
    transform: scale(1.05);
}

/* Vehicle Fleet */
.vehicle-fleet {
    margin: 2rem 0;
}

.vehicle-type {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vehicle-type:hover {
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.vehicle-type i {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-right: 1rem;
}

.vehicle-type h5 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.vehicle-type p {
    color: var(--text-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Rental Features */
.rental-features {
    margin-top: 2rem;
}

.rental-features h5 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-color);
}

.feature-list i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1rem;
}

/* Service Features Section */
.service-features-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.feature-card .feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

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

.feature-card p {
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact Page Styles */

/* Contact Information Section */
.contact-info {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

.contact-info-card:hover::before {
    left: 0;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-info-card p a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card p a:hover {
    color: var(--primary-blue);
}

.contact-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    color: var(--primary-blue);
    gap: 12px;
}

/* Social Links */
.contact-info-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card .social-link {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-info-card .social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

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

.contact-form-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-blue);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(1, 23, 99, 0.15);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: var(--primary-red);
}

.contact-form .invalid-feedback {
    color: var(--primary-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.contact-form .form-check-label a {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

#submitBtn {
    min-width: 200px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    padding: 80px 0;
}

.quote-content h2,
.quote-content .section-title {
    color: var(--white);
}

.quote-content p {
    color: rgba(255, 255, 255, 0.9);
}

.quote-features {
    margin: 2rem 0;
}

.quote-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.quote-feature i {
    color: var(--white);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.quote-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-form-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quote-form .form-control,
.quote-form .form-select {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
}

/* Map Section */
.map-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    background: var(--white);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 2rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Emergency Contact */
.emergency-contact {
    background-color: var(--white);
    padding: 60px 0;
}

.emergency-card {
    background: linear-gradient(135deg, var(--primary-red), #c91e24);
    color: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(161, 2, 3, 0.3);
}

.emergency-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.btn-emergency {
    background-color: var(--white);
    color: var(--primary-red);
    border: none;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-emergency:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Form Validation States */
.was-validated .form-control:valid {
    border-color: #28a745;
}

.was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.was-validated .form-select:valid {
    border-color: #28a745;
}

.was-validated .form-check-input:valid {
    border-color: #28a745;
}

.was-validated .form-check-input:valid:checked {
    background-color: #28a745;
    border-color: #28a745;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .quote-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .emergency-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .emergency-title {
        font-size: 1.5rem;
    }
    
    .btn-emergency {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Gallery Page Styles */

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
    padding: 80px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(1, 23, 99, 0.9), rgba(161, 2, 3, 0.9));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--white);
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.gallery-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    color: var(--white);
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    border-radius: 0;
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
    }
    
    .gallery-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .gallery-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        height: 200px;
    }
    
    .gallery-content {
        padding: 1rem;
    }
}
