@font-face {
    font-family: 'Roboto Mono';
    src: url('/fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d8f;
    --secondary-color: #2c5f9e;
    --accent-color: #0d3a6b;
    --dark-bg: #1c2938;
    --darker-bg: #141b24;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --success-color: #059669;
    --gold-accent: #d4af37;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto Mono", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
}

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

/* Top Bar */
#top-bar {
    background-color: var(--darker-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-item:hover {
    color: var(--white);
}

.top-bar-item svg {
    flex-shrink: 0;
}

/* Contact Action Bar */
#contact-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contact-bar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
}

.phone-btn {
    background-color: var(--success-color);
    color: var(--white);
}

.phone-btn:hover {
    background-color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(5, 150, 105, 0.4);
}

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

.quote-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26, 77, 143, 0.4);
}

/* Header */
#header {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 998;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtitle {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

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

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::before {
    transform: scaleX(1);
}

/* Hero Section */
#hero {
    position: relative;
    background-image: linear-gradient(135deg, rgba(26, 77, 143, 0.95), rgba(28, 41, 56, 0.90)), url('/img/workshop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

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

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

.hero-tagline {
    color: var(--gold-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.button-container {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

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

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

.btn-full {
    width: 100%;
}

/* Section Styles */
section {
    padding: 90px 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin: 0 auto;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* About Section */
#about {
    background-color: var(--white);
}

.about-content {
    display: grid;
    gap: 50px;
    margin-bottom: 60px;
}

.about-main-text {
    max-width: 900px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-main-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--light-bg);
    padding: 35px 25px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.corporate-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.info-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
#services {
    background-color: var(--light-bg);
}

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

.service-item {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.4s ease;
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 700;
    color: var(--light-bg);
    line-height: 1;
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-item > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Gallery Section */
#gallery {
    background-color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--light-bg);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 77, 143, 0.95) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
}

.gallery-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-info p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.project-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--darker-bg);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
}

.gallery-actions {
    text-align: center;
    margin-top: 40px;

    button {
        color: var(--dark-bg);
    }

    button:hover {
        color: var(--white);
        border-radius: 0.5rem;
        background-color: var(--primary-color);
    }
}

/* Certifications Section */
#certifications {
    background-color: var(--light-bg);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.cert-card {
    background-color: var(--white);
    padding: 45px 35px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.cert-icon {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.cert-card h3 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.cert-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Request Quote Section */
#request-quote {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    color: var(--white);
}

.section-header-alt {
    margin-bottom: 20px;
}

.section-label-alt {
    color: var(--gold-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-header-alt h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.title-underline-alt {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.quote-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-check {
    width: 28px;
    height: 28px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--white);
}

.benefit-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-item {
    font-size: 14px;
}

.method-item strong {
    color: var(--gold-accent);
    display: block;
    margin-bottom: 5px;
}

.method-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.method-item a:hover {
    color: var(--white);
}

/* Professional Form */
.professional-form {
    background-color: var(--white);
    padding: 45px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--text-dark);
}

.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(26, 77, 143, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    cursor: pointer;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* Contact Section */
#contact {
    background-color: var(--white);
}

.contact-content {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-info-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-card strong {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

.contact-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
}

.contact-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Footer */
#footer {
    background-color: var(--darker-bg);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-about h3 {
    font-size: 24px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-badge {
    padding: 6px 14px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-col h4 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .quote-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px;
        transition: left 0.3s ease;
        gap: 0;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 18px 0;
    }

    .top-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    #contact-bar {
        flex-direction: row;
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: space-between;
    }

    .contact-bar-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
    }

    .contact-bar-btn span {
        display: none;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .button-container {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 26px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-info {
        grid-template-columns: 1fr;
    }
}

/* BEE Level 1 Enhancements */
.bbbee-indicator {
    background-color: rgba(212, 175, 55, 0.15);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--gold-accent) !important;
}

/* Featured Certification Card */
.cert-card.featured-cert {
    border: 2px solid var(--gold-accent);
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 100%);
    position: relative;
    overflow: visible;
}

.cert-card.featured-cert::before {
    content: "FEATURED";
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--gold-accent);
    color: var(--darker-bg);
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 3px;
}

.bbbee-badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.level-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
}

.ownership-badge {
    background-color: var(--gold-accent);
    color: var(--darker-bg);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: center;
}

.bbbee-benefits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-point {
    font-size: 13px;
    font-weight: 600;
    color: var(--success-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* BEE Highlight Section */
#bbbee-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 3px solid var(--gold-accent);
    border-bottom: 3px solid var(--gold-accent);
}

.bbbee-highlight-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.bbbee-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.level-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(26, 77, 143, 0.3);
    position: relative;
}

.level-circle::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid var(--gold-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.level-number {
    font-size: 80px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.level-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-align: center;
}

.ownership-seal {
    background-color: var(--gold-accent);
    color: var(--darker-bg);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.ownership-seal span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bbbee-highlight-right h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.bbbee-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.bbbee-advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.advantage-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

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

.advantage-content h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.advantage-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.bbbee-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bbbee-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer Featured Badge */
.footer-certifications .cert-badge.featured {
    background-color: rgba(212, 175, 55, 0.25);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-weight: 800;
}

/* Responsive BEE Section */
@media screen and (max-width: 1024px) {
    .bbbee-highlight-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bbbee-visual {
        flex-direction: row;
        justify-content: center;
    }
    
    .level-circle {
        width: 160px;
        height: 160px;
    }
    
    .level-number {
        font-size: 60px;
    }
}

@media screen and (max-width: 768px) {
    .bbbee-visual {
        flex-direction: column;
    }
    
    .level-circle {
        width: 180px;
        height: 180px;
    }
    
    .bbbee-highlight-right h2 {
        font-size: 28px;
    }
    
    .hero-feature {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .level-circle {
        width: 150px;
        height: 150px;
    }
    
    .level-number {
        font-size: 50px;
    }
    
    .ownership-seal {
        padding: 20px;
    }
}