/* Custom Styles for Laminate Now */

:root {
    --primary-color: #d2151e;
    --secondary-color: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
}

* {
    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;
}

/* Top Header */
.top-header {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info a, .social-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: opacity 0.3s;
}

.contact-info a:hover, .social-links a:hover {
    opacity: 0.8;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin-left: 5px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.logo-text {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #b01118;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    margin-top: -1px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.service-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    border: 1px solid var(--border-color);
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b01118 100%);
    color: white;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
}

.btn-light:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer h3, .footer h5 {
    color: white;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    list-style: none;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-contact a {
    color: #ddd;
    text-decoration: none;
}

.social-links-footer a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links-footer a:hover {
    background: white;
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

/* Enquiry Float Button */
.enquiry-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(210, 21, 30, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.enquiry-float-btn:hover {
    background: #b01118;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(210, 21, 30, 0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Mission & Vision Boxes */
.mission-box, .vision-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.mission-box i, .vision-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-box h3, .vision-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
}

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

.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Infrastructure List */
.infrastructure-list {
    list-style: none;
    padding: 0;
}

.infrastructure-list li {
    padding: 10px 0;
    font-size: 16px;
}

.infrastructure-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Service Detail */
.service-detail {
    background: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.service-detail h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-detail i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-detail ul {
    margin-top: 15px;
}

/* Contact Cards */
.contact-info-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.contact-info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-card a {
    color: var(--text-color);
    text-decoration: none;
}

/* Form */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 5px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 21, 30, 0.25);
}

/* Custom Features List */
.custom-features {
    list-style: none;
    padding: 0;
}

.custom-features li {
    padding: 10px 0;
    font-size: 16px;
}

.custom-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .enquiry-float-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
