/* Dunlop Boots - Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dunlop-green: #3D5C3D;
    --dunlop-green-light: #4A7A4A;
    --dunlop-orange: #E65C00;
    --dunlop-orange-dark: #A04000;
    --dunlop-dark: #1a1a1a;
    --dunlop-gray: #333333;
    --dunlop-light: #f5f5f5;
    --dunlop-white: #ffffff;
    /* Keep yellow as alias for green for compatibility */
    --dunlop-yellow: #3D5C3D;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dunlop-dark);
    background-color: var(--dunlop-white);
}
a {
    text-decoration: none;
    color: inherit;
}
/* Header */
header {
    background: var(--dunlop-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-top {
    background: linear-gradient(90deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 100%);
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    color: var(--dunlop-white);
    font-size: 14px;
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo img {
    height: 50px;
    width: auto;
}
.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--dunlop-yellow);
    letter-spacing: 2px;
}
.logo-tagline {
    font-size: 11px;
    color: var(--dunlop-white);
    letter-spacing: 3px;
    text-transform: uppercase;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}
nav ul li a {
    color: var(--dunlop-white);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 10px 0;
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--dunlop-yellow);
}
.mobile-menu {
    display: none;
    font-size: 28px;
    color: var(--dunlop-white);
    cursor: pointer;
}
/* Reseller Login Button */
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.btn-reseller {
    background: linear-gradient(135deg, var(--dunlop-orange) 0%, var(--dunlop-orange-dark) 100%);
    color: var(--dunlop-white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-reseller:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 92, 0, 0.4);
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dunlop-dark) 0%, var(--dunlop-gray) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--dunlop-white) 0%, var(--dunlop-green-light) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dunlop-white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-text h1 span {
    color: var(--dunlop-yellow);
}
.hero-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-image img {
    mix-blend-mode: multiply;
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--dunlop-green);
    color: var(--dunlop-white);
}
.btn-primary:hover {
    background: var(--dunlop-green-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(61,92,61,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--dunlop-white);
    border: 2px solid var(--dunlop-white);
    margin-left: 15px;
}
.btn-secondary:hover {
    background: var(--dunlop-white);
    color: var(--dunlop-dark);
}
/* Sections */
section {
    padding: 80px 5%;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dunlop-dark);
    margin-bottom: 15px;
}
.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}
.section-header .highlight {
    color: var(--dunlop-green);
}
/* Materials Section */
.materials {
    background: var(--dunlop-light);
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.material-card {
    background: var(--dunlop-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--dunlop-green);
}
.material-card.best::before {
    background: linear-gradient(90deg, var(--dunlop-white), var(--dunlop-green));
}
.material-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.material-badge {
    display: inline-block;
    padding: 5px 20px;
    background: var(--dunlop-green);
    color: var(--dunlop-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.material-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dunlop-dark);
    margin-bottom: 15px;
}
.material-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}
.material-features {
    margin-top: 25px;
    text-align: left;
    list-style: none;
}
.material-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}
.material-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--dunlop-green);
    font-weight: bold;
}
/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.industry-card {
    background: var(--dunlop-dark);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}
.industry-card:hover {
    background: var(--dunlop-green);
    transform: translateY(-5px);
}
.industry-card:hover .industry-icon,
.industry-card:hover h4 {
    color: var(--dunlop-white);
}
.industry-icon {
    font-size: 48px;
    color: var(--dunlop-yellow);
    margin-bottom: 20px;
    transition: color 0.3s;
}
.industry-card h4 {
    color: var(--dunlop-white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
/* Features Section */
.features {
    background: linear-gradient(135deg, var(--dunlop-dark) 0%, #2a2a2a 100%);
    color: var(--dunlop-white);
}
.features .section-header h2,
.features .section-header p {
    color: var(--dunlop-white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-item {
    text-align: center;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--dunlop-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--dunlop-white);
}
.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dunlop-yellow);
}
.feature-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}
/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 100%);
    padding: 60px 5%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.stat-item h3 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dunlop-white);
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Testimonial */
.testimonial {
    background: var(--dunlop-light);
}
.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--dunlop-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}
.testimonial-quote::before {
    content: '"';
    font-size: 80px;
    color: var(--dunlop-green);
    position: absolute;
    top: -30px;
    left: -40px;
    font-family: Georgia, serif;
}
.testimonial-author {
    font-weight: 600;
    color: var(--dunlop-dark);
    font-size: 18px;
}
.testimonial-role {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}
/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 50%, var(--dunlop-white) 100%);
    text-align: center;
    padding: 80px 5%;
}
.cta h2 {
    font-size: 42px;
    color: var(--dunlop-white);
    margin-bottom: 20px;
}
.cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn {
    background: var(--dunlop-dark);
    color: var(--dunlop-white);
}
.cta .btn:hover {
    background: var(--dunlop-gray);
}
/* Footer */
footer {
    background: var(--dunlop-dark);
    color: var(--dunlop-white);
    padding: 60px 5% 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-brand .logo-text {
    margin-bottom: 20px;
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-section h4 {
    color: var(--dunlop-yellow);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 12px;
}
.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: var(--dunlop-yellow);
}
.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.cert-badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}
/* Products Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dunlop-dark) 0%, var(--dunlop-gray) 100%);
    padding: 120px 5% 80px;
    text-align: center;
}
.page-hero h1 {
    font-size: 48px;
    color: var(--dunlop-white);
    margin-bottom: 15px;
}
.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
}
/* Product Filter */
.product-filter {
    background: linear-gradient(180deg, #fff 0%, var(--dunlop-light) 100%);
    padding: 25px 5%;
    position: sticky;
    top: 115px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.filter-btn {
    padding: 12px 28px;
    background: var(--dunlop-white);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-btn:hover {
    background: var(--dunlop-dark);
    color: var(--dunlop-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.filter-btn.active {
    background: var(--dunlop-green);
    color: var(--dunlop-white);
    box-shadow: 0 4px 15px rgba(61,92,61,0.4);
}
/* Product Categories */
.product-category {
    padding: 80px 5%;
    border-bottom: none;
    position: relative;
}
.product-category:nth-child(even) {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}
.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: none;
    position: relative;
}
.category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--dunlop-white), var(--dunlop-green));
    border-radius: 2px;
}
.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dunlop-white) 0%, var(--dunlop-green) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(61,92,61,0.3);
}
.category-header h2 {
    font-size: 36px;
    color: var(--dunlop-dark);
    font-weight: 700;
}
.category-description {
    color: #666;
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.7;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}
.product-card {
    background: var(--dunlop-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--dunlop-green);
}
.product-image {
    height: 220px;
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--dunlop-dark);
    overflow: hidden;
    position: relative;
}
.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
}
.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}
.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-2deg);
}
.product-info {
    padding: 20px 25px 25px;
}
.product-range {
    display: inline-block;
    padding: 4px 12px;
    background: var(--dunlop-green);
    color: var(--dunlop-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.product-range.acifort {
    background: #4CAF50;
    color: white;
}
.product-range.pvc {
    background: #2196F3;
    color: white;
}
.product-card h3 {
    font-size: 18px;
    color: var(--dunlop-dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.product-article {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}
.product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}
.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}
.spec-tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
    border-radius: 20px;
    font-size: 11px;
    color: #444;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.06);
}
.spec-tag:first-child {
    background: linear-gradient(135deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 100%);
    color: var(--dunlop-white);
    font-weight: 600;
}
.product-standard {
    font-size: 12px;
    color: #999;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px dashed #e0e0e0;
    font-style: italic;
}
.quote-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 100%);
    color: var(--dunlop-white);
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    cursor: pointer;
}
.quote-btn:hover {
    background: linear-gradient(135deg, var(--dunlop-green-light) 0%, var(--dunlop-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 92, 61, 0.3);
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.quote-modal.active {
    display: flex;
}
.quote-modal-content {
    background: var(--dunlop-white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.quote-modal-header {
    background: linear-gradient(135deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 100%);
    color: var(--dunlop-white);
    padding: 20px 25px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quote-modal-header h3 {
    font-size: 18px;
    margin: 0;
}
.quote-modal-close {
    background: none;
    border: none;
    color: var(--dunlop-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.quote-modal-close:hover {
    opacity: 1;
}
.quote-modal-product {
    background: var(--dunlop-light);
    padding: 15px 25px;
    border-bottom: 1px solid #e0e0e0;
}
.quote-modal-product h4 {
    font-size: 16px;
    color: var(--dunlop-dark);
    margin: 0 0 5px 0;
}
.quote-modal-product p {
    font-size: 13px;
    color: #666;
    margin: 0;
}
.quote-modal-form {
    padding: 25px;
}
.quote-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.quote-modal-form .form-group {
    margin-bottom: 15px;
}
.quote-modal-form .form-group.full-width {
    grid-column: 1 / -1;
}
.quote-modal-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dunlop-dark);
    margin-bottom: 6px;
}
.quote-modal-form input,
.quote-modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-modal-form input:focus,
.quote-modal-form textarea:focus {
    outline: none;
    border-color: var(--dunlop-green);
    box-shadow: 0 0 0 3px rgba(61, 92, 61, 0.1);
}
.quote-modal-form textarea {
    resize: vertical;
    min-height: 80px;
}
.quote-modal-form .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--dunlop-green) 0%, var(--dunlop-green-light) 100%);
    color: var(--dunlop-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.quote-modal-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 92, 61, 0.3);
}
.quote-modal-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.quote-message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}
.quote-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.quote-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
@media (max-width: 600px) {
    .quote-modal-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--dunlop-dark) 0%, var(--dunlop-gray) 100%);
    padding: 120px 5% 80px;
}
.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-hero-text h1 {
    font-size: 48px;
    color: var(--dunlop-white);
    margin-bottom: 20px;
}
.about-hero-text h1 span {
    color: var(--dunlop-yellow);
}
.about-hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}
.mission-box {
    background: var(--dunlop-green);
    padding: 40px;
    border-radius: 12px;
}
.mission-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}
.mission-box p {
    font-size: 28px;
    font-weight: 700;
    color: var(--dunlop-white);
    line-height: 1.4;
}
/* History Section */
.history-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.history-item {
    text-align: center;
    padding: 30px;
}
.history-icon {
    width: 100px;
    height: 100px;
    background: var(--dunlop-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 48px;
}
.history-item h3 {
    font-size: 24px;
    color: var(--dunlop-dark);
    margin-bottom: 15px;
}
.history-item p {
    color: #666;
    line-height: 1.7;
}
/* Sustainability Section */
.sustainability {
    background: var(--dunlop-dark);
    color: var(--dunlop-white);
}
.sustainability .section-header h2,
.sustainability .section-header p {
    color: var(--dunlop-white);
}
.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.sustainability-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}
.sustainability-item h3 {
    font-size: 36px;
    color: var(--dunlop-yellow);
    font-weight: 800;
    margin-bottom: 10px;
}
.sustainability-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}
/* Contact Page */
.contact-section {
    padding: 80px 5%;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-info h2 {
    font-size: 36px;
    color: var(--dunlop-dark);
    margin-bottom: 30px;
}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--dunlop-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    color: var(--dunlop-white);
}
.contact-item h4 {
    font-size: 18px;
    color: var(--dunlop-dark);
    margin-bottom: 5px;
}
.contact-item p {
    color: #666;
    font-size: 15px;
}
.contact-form {
    background: var(--dunlop-light);
    padding: 40px;
    border-radius: 12px;
}
.contact-form h3 {
    font-size: 24px;
    color: var(--dunlop-dark);
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dunlop-dark);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dunlop-yellow);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* Fit Types Section */
.fit-types {
    background: var(--dunlop-light);
}
.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.fit-card {
    background: var(--dunlop-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.fit-header {
    background: var(--dunlop-dark);
    padding: 30px;
    text-align: center;
}
.fit-header h3 {
    color: var(--dunlop-yellow);
    font-size: 24px;
    margin-bottom: 5px;
}
.fit-header span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.fit-content {
    padding: 30px;
}
.fit-content ul {
    list-style: none;
}
.fit-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    border-bottom: 1px solid #eee;
}
.fit-content li:last-child {
    border-bottom: none;
}
.fit-content li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--dunlop-green);
    font-weight: bold;
    font-size: 18px;
}
/* Responsive */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero::before {
        display: none;
    }
    .hero-text p {
        margin: 0 auto 30px;
    }
    .materials-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-hero-content {
        grid-template-columns: 1fr;
    }
    .history-grid {
        grid-template-columns: 1fr;
    }
    .sustainability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    .fit-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .btn-secondary {
        margin-left: 0;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .stat-item h3 {
        font-size: 40px;
    }
}

/* ============================================
   Gumboot Dancing Heritage Section
   ============================================ */
.gumboot-heritage {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.gumboot-heritage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dunlop-orange), var(--dunlop-green), var(--dunlop-orange));
}

.gumboot-heritage .section-header h2 {
    color: var(--dunlop-white);
}

.gumboot-heritage .section-header .highlight {
    color: var(--dunlop-orange);
}

.gumboot-heritage .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.heritage-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.heritage-story {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.heritage-story:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--dunlop-orange);
}

.heritage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.heritage-story h3 {
    color: var(--dunlop-orange);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.heritage-story p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
}

.heritage-quote {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
}

.heritage-quote blockquote {
    font-size: 22px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    padding: 30px 50px;
    border-left: 4px solid var(--dunlop-orange);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 12px 12px 0;
}

@media (max-width: 1024px) {
    .heritage-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .heritage-content {
        grid-template-columns: 1fr;
    }

    .heritage-quote blockquote {
        font-size: 18px;
        padding: 20px 25px;
    }
}
