/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section (Now Header) */
.hero-section {
    background: #f8f9fa;
    padding: 0;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.hero-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.heritage-text {
    position: absolute;
    bottom: 130px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 6px;
    z-index: 3;
}

.hero-overlay {
    background: #dc2626;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px;
    position: relative;
}


.hero-content {
    color: white;
    text-align: left;
    max-width: 500px;
    position: relative;
    z-index: 2;
    margin-left: 20px;
}

.logo {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 180px;
    height: auto;
    display: block;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-content .cta-button {
    background: white;
    color: #dc2626;
    font-size: 1.1rem;
    padding: 18px 35px;
}

.hero-content .cta-button:hover {
    background: #f8f9fa;
    color: #b91c1c;
}

/* Curved Lines */
.curved-line-top {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.curved-line-top svg {
    width: 100%;
    height: 100%;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.content-section p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.content-section h3 {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 15px;
}

/* Product Section */
.product-section {
    padding: 80px 0;
}

.product-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 55px;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(100%);
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.3;
}

.product-card p {
    padding: 0 20px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 400;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    line-height: 1.3;
}

.service-item p {
    text-align: left;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Buttons */
.cta-button, .product-button {
    background: #dc2626;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.cta-button:hover, .product-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.product-button {
    margin: 0 20px 25px;
}

.center-button {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    background: #dc2626;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.7;
}

.contact-section .cta-button {
    background: white;
    color: #dc2626;
}

.contact-section .cta-button:hover {
    background: #f8f9fa;
    color: #b91c1c;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-column:first-child {
    justify-content: flex-start;
}

.form-column:last-child {
    justify-content: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 145px;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.submit-button {
    background: white;
    color: #dc2626;
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
}

.submit-button:hover {
    background: #f8f9fa;
    color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.submit-button:hover .arrow-icon {
    transform: translateX(3px);
}

.hidden {
    display: none;
}

/* Contact Details */
.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details strong {
    color: white;
    font-weight: 600;
}

/* Footer Curve */
.footer-curve {
    width: 100%;
    height: 120px;
    position: relative;
    z-index: 1;
    margin-top: -150px;
}

.footer-curve svg {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #dc2626;
    color: white;
    position: relative;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 0;
    opacity: 0.8;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    .logo-image {
        max-width: 100px;
        display: block;
        margin: auto;

    }

    .hero-section {
        min-height: 70vh;
    }
    
    .main-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }
    
    .logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .logo-number {
        width: 60px;
        height: 60px;
        font-size: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        min-height: 60vh;
    }
    
    .hero-overlay {
        padding: 40px 20px;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
    .content-section h2,
    .product-section h2 {
        font-size: 1.8rem;
        letter-spacing: 1.2px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-submit {
        justify-content: center;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .content-section,
    .product-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .product-card {
        margin: 0 10px;
    }
}

@media (max-width: 1100px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
}

@media (max-width: 680px) {


    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        margin: 0 10px;
    }
}

.colour-coding {
    background-image: url("./assets/img/display.jpg");
    background-repeat:no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: rgba(255,255,255,0.6);
    background-blend-mode: lighten;
}
