﻿html {
  font-size: 14px;
}

/*@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}*/
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.4);
    padding: 30px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
    }

.form-input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
}

    .form-input:focus {
        outline: none;
        border-color: #1a73e8;
        box-shadow: 0 0 0 2px rgba(26,115,232,0.2);
    }

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

    .submit-btn:hover {
        background: #1557b0;
    }

.text-danger {
    color: #d93025;
    font-size: 14px;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/**/
body {
  margin-bottom: 45px;
}
/* Product Banner - same height as home slider */
.product-banner {
    width: 100%;
    height: 500px; /* match your home page slider height */
    position: relative;
    overflow: hidden;
}

    .product-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-title {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Features Section */
.product-features {
    padding: 60px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 50px;
}

    .features-list li {
        background: #fff;
        padding: 18px 24px;
        margin-bottom: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        font-size: 17px;
        position: relative;
        padding-left: 50px;
    }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 18px;
            color: #1a73e8;
            font-weight: bold;
            font-size: 20px;
        }

/* Links */
.product-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-link {
    padding: 14px 28px;
    border: 2px solid #1a73e8;
    border-radius: 8px;
    text-decoration: none;
    color: #1a73e8;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-link:hover {
        background: #1a73e8;
        color: #fff;
    }

.btn-primary {
    background: #1a73e8;
    color: #fff;
}

    .btn-primary:hover {
        background: #1557b0;
        border-color: #1557b0;
    }

@media (max-width: 768px) {
    .product-banner {
        height: 300px;
    }

    .banner-title {
        font-size: 32px;
        bottom: 20px;
    }

    .product-links {
        flex-direction: column;
    }
}
/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.copyright {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-list a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

        .contact-list a:hover {
            color: #1a73e8;
        }

.social-icons {
    display: flex;
    gap: 16px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        background: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s;
    }

        .social-icons a:hover {
            background: #1a73e8;
            transform: translateY(-3px);
        }

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}