.contact-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info-box h3 {
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #0056b3);
}

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

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details li:last-child {
    margin-bottom: 0;
}

.contact-details li i {
    color: #007bff;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-details li div h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.contact-details li div p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-box h3 {
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #0056b3);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
}

/* Fix Product Slider Alignment */
.product-slider {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-carousel .item {
    padding: 15px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    line-height: 1.4;
}

/* Owl Carousel Navigation */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #007bff !important;
    color: #fff !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-dots {
    margin-top: 20px;
}

.owl-dot span {
    background: #ddd !important;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #007bff !important;
}

@media (max-width: 768px) {
    .owl-nav button {
        display: none;
    }
    
    .contact-form-box,
    .contact-info-box {
        margin-bottom: 30px;
    }
}