/* Variables */
:root {
    --primary-color: #2c5282;
    --secondary-color: #38a169;
    --text-color: #2d3748;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #2c5282, #38a169);
    --gradient-dark: linear-gradient(135deg, #1a365d, #2c5282);
    --gradient-footer: linear-gradient(135deg, #2c5282, #38a169);
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in;
}

.animate-slideInUp {
    animation: slideInUp 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Navigation */
.navbar {
    background: var(--gradient-primary);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-lg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(44, 82, 130, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    margin: 0 0.2rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 76px;
    background: var(--gradient-primary);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 82, 130, 0.85), rgba(56, 161, 105, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    padding: 2rem 0 4rem;
    background-color: var(--light-bg);
}

.video-section .section-title {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.video-container video {
    display: block;
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16/9;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Forms */
.form-control {
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    border-radius: 10px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: #1a365d;
    border-color: #1a365d;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--gradient-footer);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(56, 161, 105, 0.2), rgba(44, 82, 130, 0.2));
    pointer-events: none;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.footer-links {
    position: relative;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 0.3rem 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

footer .copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Map */
#map {
    height: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Components */
.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.testimonial-card {
    text-align: center;
    padding: 2rem;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.testimonial-card .quote {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Login Page */
.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.login-card {
    padding: 2rem;
    text-align: center;
}

.login-card .logo-img {
    height: 100px;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        margin: 0.2rem 0;
    }
    
    .footer-logo {
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-section {
        min-height: 30vh;
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .video-section {
        padding: 1.5rem 0 3rem;
    }
    
    .video-section .section-title {
        margin-bottom: 1.5rem;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .video-container video {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 60px;
    }
    
    .hero-section {
        min-height: 25vh;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.service-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.service-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    margin-bottom: 0;
}

/* Service Images */
.section img {
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.section img:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .service-list {
        gap: 1.5rem;
    }
    
    .service-item {
        gap: 0.8rem;
    }
    
    .service-item i {
        font-size: 1.2rem;
    }
    
    .service-item h4 {
        font-size: 1.1rem;
    }
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-item i.text-primary {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.service-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-item p {
    color: #4a5568;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .service-features li {
        font-size: 0.95rem;
    }
    
    .service-item {
        padding: 1.2rem;
    }
    
    .service-item i.text-primary {
        font-size: 1.5rem;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
    }
}

/* About Section Styles */
.about-content {
    font-size: 1rem;
    line-height: 1.8;
}

.about-description {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.about-description p {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.service-areas, .company-focus {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.service-areas .fw-bold, .company-focus .fw-bold {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-description ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    display: flex;
    align-items: center;
}

.about-description ul li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.stat-box {
    background-color: white;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

.stat-box p {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

.vision-mission-card {
    height: 100%;
    border: none;
    background-color: white;
    padding: 1rem;
}

.vision-mission-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.4rem;
}

.vision-mission-card .card-text {
    color: #4a5568;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-description {
        padding: 1.5rem;
    }
    
    .service-areas, .company-focus {
        padding: 1.2rem;
    }
    
    .stat-box {
        margin-bottom: 1rem;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
    }
}

/* Image Styles for Services Page */
.img-fluid {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .img-fluid {
        max-height: 150px;
    }
}

/* Service Section Styles */
.service-image-wrapper {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image-wrapper .img-fluid {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-image-wrapper .img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.service-list {
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .service-image-wrapper {
        padding: 1rem 0;
        margin: 1rem 0;
    }
    
    .service-list {
        padding-right: 0;
    }
    
    .service-image-wrapper .img-fluid {
        max-height: 180px;
    }
}

@media (max-width: 768px) {
    .service-image-wrapper .img-fluid {
        max-height: 150px;
    }
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-image img {
        height: 160px;
    }
}

/* Customer Service Section */
.customer-service-section {
    padding: 5rem 0;
    background: white;
}

.cs-content {
    padding-right: 2rem;
}

.cs-content h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.cs-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.cs-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.cs-features li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cs-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cs-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cs-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Map and Business Hours Section */
.map-hours-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.map-wrapper {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

#map {
    height: 450px;
    width: 100%;
}

.hours-card {
    height: 100%;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.hours-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.8rem;
}

.hours-content {
    margin-top: 2rem;
}

.hours-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.hours-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hours-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.hours-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.hours-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .cs-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .cs-image-wrapper img {
        height: 300px;
    }

    #map {
        height: 350px;
        margin-bottom: 2rem;
    }

    .hours-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .customer-service-section {
        padding: 3rem 0;
    }

    .cs-features li {
        font-size: 1rem;
    }

    .cs-image-wrapper img {
        height: 250px;
    }

    .map-hours-section {
        padding: 3rem 0;
    }

    #map {
        height: 300px;
    }

    .hours-card {
        padding: 1.5rem;
    }

    .hours-item {
        padding: 1.2rem;
    }

    .hours-item h5 {
        font-size: 1.1rem;
    }

    .hours-item p {
        font-size: 1rem;
    }
}

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-contact-card .icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.quick-contact-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.quick-contact-card p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Contact Page Styles */
.hero-section-contact {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-section-contact h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section-contact .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info h5 {
    color: white;
    font-weight: 600;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    background-color: #f8fafc;
    transition: var(--transition);
}

.form-floating > textarea.form-control {
    height: 120px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 82, 130, 0.1);
    background-color: white;
}

.form-floating > label {
    padding: 1rem;
    color: #64748b;
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

#map {
    height: 400px;
    width: 100%;
}

/* Business Hours Section */
.business-hours-section {
    padding: 5rem 0;
    background: white;
}

.hours-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.hours-card h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.hours-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.hours-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section-contact {
        padding: 4rem 0;
    }

    .hero-section-contact h1 {
        font-size: 2.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .hours-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-contact {
        padding: 3rem 0;
    }

    .hero-section-contact h1 {
        font-size: 2rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .hours-card {
        padding: 1.5rem;
    }

    .hours-item {
        padding: 1rem;
    }

    #map {
        height: 300px;
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    margin-top: 76px;
    background: var(--light-bg);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-wrapper {
    height: 100%;
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.contact-info-content h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-info-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.6;
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    background-color: #f8fafc;
    transition: var(--transition);
}

.form-floating > textarea.form-control {
    height: 120px;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(44, 82, 130, 0.1);
    background-color: white;
}

.form-floating > label {
    padding: 1rem;
    color: #64748b;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

#map {
    height: 300px;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }

    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .contact-info-item i {
        font-size: 1.2rem;
    }

    #map {
        height: 250px;
    }
}

/* Support Section */
.support-section {
    padding: 6rem 0 3rem;
    margin-top: 76px;
    background: white;
}

.support-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.support-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.support-content {
    padding: 2rem;
}

.support-content h2 {
    color: var(--primary-color);
    font-weight: 600;
}

.support-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #4a5568;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

#map {
    height: 500px;
    width: 100%;
}

@media (max-width: 991px) {
    .support-section {
        padding: 4rem 0 2rem;
    }

    .support-image img {
        height: 300px;
    }

    .support-content {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    #map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 3rem 0 1.5rem;
    }

    .support-image img {
        height: 250px;
    }

    .feature-item {
        font-size: 1rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    #map {
        height: 300px;
    }
}

/* Hero Section for Customers Page */
.hero-section-customers {
    background: var(--gradient-primary);
    padding: 6rem 0 4rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-section-customers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

/* Customers Section */
.customers-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.customer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.customer-logo {
    padding: 2rem;
    background: white;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.customer-logo img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.customer-info {
    padding: 2rem;
}

.customer-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.customer-type {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.customer-desc {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin: 0 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #718096;
    margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

@media (max-width: 991px) {
    .hero-section-customers {
        padding: 5rem 0 3rem;
    }

    .customer-logo {
        padding: 1.5rem;
    }

    .customer-info {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section-customers {
        padding: 4rem 0 2rem;
    }

    .hero-section-customers h1 {
        font-size: 2.5rem;
    }

    .customer-logo img {
        max-height: 80px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
} 