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

:root {
    --navy-blue: #0B2C4D;
    --business-gold: #C6A24A;
    --white: #FFFFFF;
    --light-grey: #F5F7FA;
    --dark-grey: #2C3E50;
    --text-dark: #1A1A1A;
    --text-light: #5A6C7D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(11, 44, 77, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo img {
    height: 120px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--business-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy-blue);
}

.btn-contact {
    background: var(--navy-blue);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background: var(--business-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 162, 74, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #0B2C4D 50%, #163a5f 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(198, 162, 74, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(198, 162, 74, 0.05) 87.5%, rgba(198, 162, 74, 0.05)),
        linear-gradient(150deg, rgba(198, 162, 74, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(198, 162, 74, 0.05) 87.5%, rgba(198, 162, 74, 0.05)),
        linear-gradient(30deg, rgba(198, 162, 74, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(198, 162, 74, 0.05) 87.5%, rgba(198, 162, 74, 0.05)),
        linear-gradient(150deg, rgba(198, 162, 74, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(198, 162, 74, 0.05) 87.5%, rgba(198, 162, 74, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.highlight {
    color: var(--business-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: var(--business-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #d4b05e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 162, 74, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--business-gold), transparent);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

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

.feature-card {
    padding: 2rem;
    background: var(--light-grey);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--business-gold);
    transition: height 0.3s ease;
}

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

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), #1a4166);
    color: var(--business-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Enquiry Section */
.enquiry-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, #ffffff 100%);
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.enquiry-info h2 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.enquiry-info > p {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    color: var(--business-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.chat-link {
    color: var(--business-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.chat-link:hover {
    color: var(--navy-blue);
}

/* Forms */
.enquiry-form,
.dealer-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(11, 44, 77, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--business-gold);
    box-shadow: 0 0 0 3px rgba(198, 162, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Downloads Section */
.downloads-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

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

.download-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 44, 77, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

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

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--business-gold), #d4b05e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
}

.download-icon svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    stroke: currentColor;
    max-width: 40px;
    max-height: 40px;
}

.download-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.download-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.download-card .btn {
    margin-top: 1rem;
}

/* Partner Section Updates */
.partner-subtitle {
    color: var(--business-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.partner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--business-gold);
    margin: 1rem auto 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 44, 77, 0.15);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #163a5f 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Catalogue Banner */
.catalogue-banner {
    background: linear-gradient(135deg, var(--business-gold) 0%, #d4b05e 100%);
    color: var(--white);
    padding: 3rem 0;
}

.catalogue-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.catalogue-content h2 {
    margin-bottom: 0.5rem;
}

.catalogue-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.catalogue-content .btn svg {
    width: 20px;
    height: 20px;
}

/* Product Categories */
.products-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

.product-categories {
    display: grid;
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 44, 77, 0.08);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-header {
    padding: 1.5rem 2rem;
    color: var(--white);
}

.category-header.blues { background: linear-gradient(135deg, #0047AB, #0000FF); }
.category-header.greens { background: linear-gradient(135deg, #006400, #228B22); }
.category-header.browns { background: linear-gradient(135deg, #8B4513, #BC8F8F); }
.category-header.greys { background: linear-gradient(135deg, #2F4F4F, #708090); }
.category-header.vibrant { background: linear-gradient(135deg, #800080, #FF00FF); }
.category-header.yellows { background: linear-gradient(135deg, #FFA500, #FFFF00); }
.category-header.reds { background: linear-gradient(135deg, #8B0000, #FF4500); }
.category-header.satin { background: linear-gradient(135deg, #654321, #A0522D); }

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.color-swatch {
    height: 80px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Product Types */
.product-types {
    padding: 5rem 0;
    background: var(--white);
}

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

.type-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--light-grey);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.type-icon {
    width: 80px;
    height: 80px;
    background: var(--navy-blue);
    color: var(--business-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.type-icon svg {
    width: 40px;
    height: 40px;
}

.type-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.type-card p {
    color: var(--text-light);
}

/* Company Story */
.company-story {
    padding: 5rem 0;
    background: var(--white);
}

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

.story-text h2 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: linear-gradient(135deg, var(--light-grey), #ffffff);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--business-gold);
}

.visual-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    color: var(--business-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.visual-icon svg {
    width: 24px;
    height: 24px;
}

.visual-card h3 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--text-light);
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

.leadership-grid {
    display: grid;
    gap: 2rem;
}

.leader-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 44, 77, 0.08);
    border-top: 4px solid var(--business-gold);
}

.leader-info h3 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--business-gold);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.leader-education {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.leader-bio p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.value-card {
    padding: 2rem;
    background: var(--light-grey);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

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

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--business-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
}

/* Partner Section */
.partner-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #163a5f 100%);
    color: var(--white);
    text-align: center;
}

.partner-content h2 {
    margin-bottom: 1rem;
}

.partner-content h3 {
    color: var(--business-gold);
    margin-bottom: 1.5rem;
}

.partner-content p {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* Dealership Intro */
.dealership-intro {
    padding: 5rem 0;
    background: var(--white);
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
    background: var(--light-grey);
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--business-gold);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-dark);
    font-weight: 600;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(11, 44, 77, 0.08);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-blue), #1a4166);
    color: var(--business-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

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

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background: var(--white);
}

.requirements-content h2 {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 3rem;
}

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

.requirement-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: 12px;
}

.requirement-check {
    width: 40px;
    height: 40px;
    background: var(--business-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-check svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.requirement-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.requirement-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: center;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(11, 44, 77, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--navy-blue);
    color: var(--business-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: var(--navy-blue);
    margin-bottom: 0.8rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-arrow {
    color: var(--business-gold);
    font-size: 2rem;
    text-align: center;
}

/* Dealership Form Section */
.dealership-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-wrapper h2 {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--business-gold) 0%, #d4b05e 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--business-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--business-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo img {
        height: 80px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .enquiry-wrapper,
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .catalogue-content {
        flex-direction: column;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .features-grid,
    .types-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.feature-card,
.type-card,
.benefit-card {
    animation: fadeIn 0.6s ease-out;
}
