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

/* Contact page refinements (mobile-first overrides) */
.contact-form-section {
    padding: 48px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-form-container,
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--microsoft-blue);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    background: var(--light-gray);
}

.contact-method-card .method-icon {
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* keep stacked: form full width, details below */
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .submit-btn {
        width: auto;
        min-width: 180px;
        justify-self: start;
    }
    .contact-form-container,
    .contact-info-card {
        padding: 2rem;
    }
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* remain single column on large screens */
        gap: 2.5rem;
    }
}

:root {
    --primary-color: #1E90C0;
    --microsoft-blue: #0078d4;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

.nav-brand-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--microsoft-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.625rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    min-width: 200px;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--microsoft-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 144, 192, 0.3);
}

.cta-button.secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}



/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background-color: var(--white);
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    height: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem;
    color: var(--primary-color);
}

.value-content {
    padding: 2.5rem;
    text-align: center;
}

.value-icon svg {
    width: 48px;
    height: 48px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.product-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-description {
    text-align: justify;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.product-image {
    margin-bottom: 1.5rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    text-align: left;
}

.product-features li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.read-more-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background-color: var(--microsoft-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 192, 0.3);
}

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

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    min-width: 250px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
}

/* Photo Gallery */
.photo-gallery {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.placeholder-image.cnc-machine {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.placeholder-image.milling-machine {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-image.laser-equipment {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.placeholder-image.workshop {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gallery-item p {
    padding: 1rem;
    margin: 0;
    font-weight: 500;
    color: var(--dark-gray);
}

/* Engineering Contact */
.engineering-contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-details h2,
.opening-hours h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-gray);
}

.contact-text p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--dark-gray);
}

.time {
    color: var(--text-gray);
}

/* Engineering Overview */
.engineering-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.engineering-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.engineering-intro h2 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.engineering-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design for Engineering Page */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Override container padding for contact page */
    .contact-form-section .container {
        padding: 0 5px;
    }
    
    /* Contact Info Mobile Styles */
    .contact-info-section .container {
        padding: 0 10px;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        margin: 0 5px;
    }
    
    .contact-info-card h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-method-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method-card .method-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .contact-method-card .method-content {
        text-align: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .gallery-img {
        border-radius: 6px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .value-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .value-icon {
        height: 70px;
        padding: 0.75rem;
    }
    
    .value-content {
        padding: 2rem;
    }
    
    .value-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .value-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: justify;
    }
    
    .product-range-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 0 10px;
    }
    
    .product-range-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .product-range-image {
        height: 200px;
        order: 1;
    }
    
    .product-range-content {
        padding: 2rem;
        order: 2;
        width: 100%;
    }
    
    .product-range-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .product-range-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .product-specs {
        margin: 1rem 0;
    }
    
    .product-specs li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
        line-height: 1.4;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .feature-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .feature-icon {
        height: 70px;
        padding: 0.75rem;
        font-size: 2.5rem;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .service-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
    }
    
    .service-icon {
        height: 70px;
        padding: 0.75rem;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .area-card {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .area-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .area-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .specs-table {
        font-size: 0.85rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.5rem;
    }
    
    /* Mobile-friendly product cards for technical specs */
    .mobile-specs {
        display: none;
    }
    
    .mobile-spec-card {
        background-color: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow);
        margin-bottom: 1.5rem;
        overflow: hidden;
        border: 1px solid var(--border-gray);
    }
    
    .mobile-spec-header {
        padding: 1rem;
        text-align: center;
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .mobile-spec-content {
        padding: 1rem;
    }
    
    .mobile-spec-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .mobile-spec-item:last-child {
        border-bottom: none;
    }
    
    .mobile-spec-label {
        font-weight: 600;
        color: var(--dark-gray);
        flex: 1;
        margin-right: 1rem;
        font-size: 0.85rem;
    }
    
    .mobile-spec-value {
        color: var(--text-gray);
        flex: 1;
        text-align: right;
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .specs-notes {
        margin-top: 1.5rem;
        padding: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .specs-notes p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Show mobile specs, hide desktop table on mobile */
    .specs-table-container {
        display: none;
    }
    
    .mobile-specs {
        display: block;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #cccccc;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }


    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .value-icon {
        height: 70px;
        padding: 0.75rem;
    }
    
    .value-content {
        padding: 1rem;
    }
    
    .value-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .value-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: justify;
    }
    
    .product-range-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .product-range-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-range-image {
        height: 200px;
    }
    
.product-range-content {
    padding: 2.5rem;
}
    
    .product-range-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .product-range-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
    }
    
    .value-icon {
        height: 70px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .nav-brand-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.35rem;
    }

    .value-proposition h2,
    .product-showcase h2,
    .contact-section h2 {
        font-size: 2rem;
    }


    .value-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .value-icon {
        height: 60px;
        margin-bottom: 0.75rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .value-proposition {
        padding: 60px 0;
    }
    
    .value-proposition h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .value-grid {
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.25rem;
        margin: 0;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .value-icon {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .product-range-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 5px;
    }
    
    .product-range-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-range-image {
        height: 180px;
    }
    
    .product-range-content {
        padding: 1.75rem;
    }
    
    .product-range-content h4 {
        font-size: 0.9rem;
        margin: 1.25rem 0 0.5rem 0;
    }
    
    .product-features li,
    .kit-contents li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }
    
    .product-features li::before {
        font-size: 0.9rem;
    }
    
    .kit-contents li::before {
        font-size: 1rem;
    }
    
    .garage-features-section {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .garage-features-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .garage-features-list li {
        font-size: 0.9rem;
        padding-left: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .garage-features-list li::before {
        font-size: 1.1rem;
    }
    
    .accessories-gallery {
        padding: 60px 0;
    }
    
    .accessories-gallery .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .accessories-gallery .gallery-image {
        height: 150px;
    }
    
    .accessories-gallery .gallery-img {
        border-radius: 6px;
    }
    
    .special-offer-box {
        padding: 1.25rem;
        margin-top: 0.75rem;
    }
    
    .special-offer-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .special-features li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .special-features li::before {
        font-size: 1rem;
    }
    
    .special-price {
        font-size: 1.3rem;
        margin: 0.75rem 0;
    }
    
    .price-note {
        font-size: 0.75rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .category-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .category-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .category-items li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .category-items li::before {
        font-size: 0.9rem;
    }
    
    .product-range-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .product-range-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .product-specs li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin: 0;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .service-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 1.25rem;
    }
    
    .service-icon {
        height: 60px;
        padding: 0.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: justify;
    }
    
    .area-card {
        padding: 1.25rem;
        margin: 0;
    }
    
    .area-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .area-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 160px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 5px;
    }
    
    .value-grid,
    .product-range-grid,
    .features-grid,
    .services-grid,
    .areas-grid {
        padding: 0 5px;
        gap: 1rem;
    }

    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .value-card,
    .product-range-card,
    .feature-card,
    .service-card,
    .area-card {
        padding: 1rem;
    }
    
    .value-card h3,
    .product-range-content h3,
    .feature-card h3,
    .service-card h3,
    .area-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .value-card p,
    .product-range-content p,
    .feature-card p,
    .service-card p,
    .area-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .value-icon {
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .product-range-image {
        height: 160px;
    }
    
    .product-specs li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--microsoft-blue) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Product Range Styles */
.product-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.product-overview h2 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.product-range-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-range-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

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

.product-range-image {
    height: 240px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.product-range-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.product-range-content {
    padding: 2.5rem;
}

.product-range-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.product-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
}

.product-specs li {
    color: var(--text-gray);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    padding: 0.2rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    text-align: justify;
}

.product-range-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 1.5rem 0 0.75rem 0;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.25rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.product-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.kit-contents {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.kit-contents li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-gray);
}

.kit-contents li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.garage-features-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.garage-features-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.garage-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.garage-features-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.garage-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    top: 0.1rem;
}

.learn-more-btn {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.learn-more-btn:hover {
    color: var(--microsoft-blue);
}

/* Key Features Styles */
.key-features {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    height: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem;
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-content {
    padding: 3rem;
    text-align: center;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Technical Specifications */
.technical-specs {
    padding: 80px 0;
    background-color: var(--white);
}

.specs-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.specs-notes p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.specs-notes p:last-child {
    margin-bottom: 0;
}

/* Drive model header colors */
.drive-300 {
    background-color: #3b82f6 !important;
    color: white !important;
}

.drive-500 {
    background-color: #10b981 !important;
    color: white !important;
}

.drive-600 {
    background-color: #ef4444 !important;
    color: white !important;
}

.drive-1000 {
    background-color: #f59e0b !important;
    color: white !important;
}

.specs-table-container {
    overflow-x: auto;
    margin-top: 3rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.specs-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.specs-table tr:hover {
    background-color: var(--light-gray);
}

/* Installation & Support */
.installation-support {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

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

.service-icon {
    height: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem;
    color: var(--primary-color);
}

.service-content {
    padding: 3rem;
    text-align: center;
}

.service-card.large {
    text-align: left;
}

.service-card.large .service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-card.large .service-features li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card.large .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Garage Door Specific Styles */
.garage-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.garage-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.garage-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.garage-hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
}

.feature-icon {
    font-size: 1.2rem;
}

.garage-door-visual {
    width: 300px;
    height: 200px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.garage-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.special-offer-box {
    background: linear-gradient(135deg, var(--primary-color), var(--microsoft-blue));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

.special-offer-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--white);
}

.special-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.special-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.special-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
}

.special-price {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0;
    color: var(--white);
}

.price-note {
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
    opacity: 0.9;
    color: var(--white);
}

.accessories-gallery {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.accessories-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.accessories-gallery .gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accessories-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accessories-gallery .gallery-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.accessories-gallery .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background-color: var(--white);
}

.gallery-caption {
    margin: 0.75rem 0 1rem 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
}

/* Product Categories */
.product-category {
    margin-bottom: 4rem;
}

.product-category h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    text-align: center;
}

.product-category .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.category-icon {
    height: 80px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.category-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-items li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.category-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.garage-products {
    padding: 80px 0;
    background-color: var(--white);
}

.garage-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.garage-product-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

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

.garage-product-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--microsoft-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.garage-product-content {
    padding: 2.5rem;
}

.operator-visual {
    width: 150px;
    height: 100px;
    background: var(--white);
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    position: relative;
}

.operator-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--primary-color);
    border-radius: 5px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.spec-item {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Benefits Section */
.garage-benefits {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Installation Process */
.installation-process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Engineering Specific Styles */
.engineering-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.engineering-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.engineering-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.engineering-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.engineering-visual {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--microsoft-blue));
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow);
}

.engineering-services {
    padding: 80px 0;
    background-color: var(--white);
}

.technical-expertise {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expertise-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Project Process */
.project-process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-timeline {
    margin-top: 3rem;
}

.process-timeline .process-step {
    position: relative;
}

.process-timeline .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 70px;
    width: 2px;
    height: 50px;
    background-color: var(--primary-color);
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certification-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.certification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.certification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.certification-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Case Studies */
.case-studies {
    padding: 80px 0;
    background-color: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--microsoft-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-content {
    padding: 2.5rem;
}

.case-visual {
    width: 150px;
    height: 100px;
    background: var(--white);
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    position: relative;
}

.case-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--primary-color);
    border-radius: 5px;
}

.case-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-results {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
}

.result-item {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles - Mobile First */
.contact-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.contact-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.contact-hero-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-hero-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.highlight-icon {
    font-size: 1.2rem;
}

.contact-visual {
    width: 100%;
    max-width: 280px;
    height: 180px;
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-info-section {
    padding: 40px 0;
    background-color: var(--white);
}

.contact-info-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

.contact-info-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border-gray);
}

.contact-method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-method-card .method-icon {
    font-size: 2rem;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.contact-method-card .method-content {
    flex: 1;
    text-align: left;
}

.contact-method-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-detail {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-method-card .method-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.contact-form-section {
    padding: 40px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    padding: 0 10px;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    text-align: center;
}

.contact-form-container p,
.contact-info-container p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Form Styles - Mobile First */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 144, 192, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--microsoft-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 144, 192, 0.3);
}

/* Contact Methods - Mobile First */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    width: 100%;
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.method-content p {
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.method-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    opacity: 0.8;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-content {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }

    .contact-hero-text h2 {
        font-size: 2.2rem;
    }

    .contact-hero-text p {
        font-size: 1.1rem;
    }

    .contact-highlights {
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
    }

    .contact-visual {
        width: 300px;
        height: 200px;
        max-width: none;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-wrapper {
        flex-direction: row;
        gap: 4rem;
        padding: 0 20px;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 1.8rem;
        text-align: left;
    }

    .contact-form-container p,
    .contact-info-container p {
        text-align: left;
        font-size: 1rem;
    }

    .contact-form {
        padding: 0 10px;
    }

    .form-row {
        flex-direction: row;
        gap: 1.5rem;
    }

    .form-group {
        flex: 1;
    }

    .submit-btn {
        width: auto;
        max-width: 300px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero-content {
        gap: 4rem;
    }

    .contact-hero-text h2 {
        font-size: 2.5rem;
    }

    .contact-hero-text p {
        font-size: 1.2rem;
    }

    .contact-form-section {
        padding: 80px 0;
    }

    .contact-wrapper {
        gap: 5rem;
        padding: 0 30px;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 2rem;
    }

    .contact-form-container p,
    .contact-info-container p {
        font-size: 1.1rem;
    }

    .contact-form {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    /* Contact Info Responsive Styles */
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 3rem;
    }
    
    .contact-info-card h2 {
        font-size: 2.2rem;
    }
    
    .contact-info-card p {
        font-size: 1.1rem;
    }

    .form-row {
        gap: 2rem;
    }

    .contact-methods {
        gap: 1.5rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .method-icon {
        font-size: 2rem;
    }

    .method-content h3 {
        font-size: 1.1rem;
    }

    .method-content p {
        font-size: 1rem;
    }
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: var(--light-gray);
}
/* --- Contact page final overrides (ensure clean stacked layout) --- */
section.contact-form-section .contact-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}

section.contact-form-section .contact-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 !important;
}

section.contact-form-section .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
}

@media (min-width: 768px) {
    section.contact-form-section .form-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.area-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.area-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-grid {
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--microsoft-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}
