/* Global Styles */
:root {
    --primary-color: #ff6b00; /* Orange from logo */
    --secondary-color: #333333; /* Dark gray */
    --accent-color: #28a745; /* Green for accents */
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --white: #fff;
    --black: #000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --section-padding: 60px 0;
}

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

/* Accessibility Improvements */
:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* Skip to main content link for keyboard users */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Improved contrast for better readability */
.high-contrast {
    background-color: #000;
    color: #fff;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove bottom margin */
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #8a1a1e;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--dark-gray);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

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

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--dark-gray);
    padding: 12px 16px;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-gray);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    color: var(--white);
    padding: 80px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(0px);
    transform: scale(1.03);
    transition: transform 0.5s ease-out;
    will-change: transform;
}

.hero-background:nth-child(1)::before {
    background-image: url('images/hero-backgrounds/fine_dining.png');
}

.hero-background:nth-child(2)::before {
    background-image: url('images/hero-backgrounds/casual_dining.png');
}

.hero-background:nth-child(3)::before {
    background-image: url('images/hero-backgrounds/fast_food_dining.png');
}

.hero-background:nth-child(4)::before {
    background-image: url('images/hero-backgrounds/bar_nightclub_dining.png');
}

.hero-background.active {
    opacity: 1;
    z-index: 1;
}

.hero-background.active::before {
    animation: gentleZoom 10s ease-in-out infinite alternate;
}

@keyframes gentleZoom {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 550px;
    padding-right: 20px;
}

.hero-icon {
    margin-bottom: 20px;
    text-align: center;
}

.hero-icon img {
    width: 60px;
    height: auto;
    display: inline-block;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
    text-align: left;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-feature {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.hero-form .form-group {
    margin-bottom: 0;
}

.hero-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
    color: var(--white);
}

.hero-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.submit-btn {
    flex: 1;
    background-color: var(--primary-color);
}

.reset-btn {
    flex: 1;
    background-color: #666;
}

/* Awards Section */
.awards {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.awards-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.award-badge {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 300px;
}

.award-badge i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.awards-text {
    flex: 2;
    min-width: 300px;
}

.premium {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.partner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Demo Section */
.demo-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.demo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.demo-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.demo-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
    transform: scale(1.05);
    z-index: 1;
}

.demo-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.demo-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.demo-card-icon {
    margin-bottom: 20px;
}

.demo-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.demo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.demo-card p {
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.demo-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.demo-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.demo-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.demo-btn {
    margin-top: auto;
}

.demo-cta-box {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.demo-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), #ff9d4d);
}

.demo-cta-content {
    flex: 2;
    min-width: 300px;
}

.demo-cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.demo-cta-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.demo-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.demo-form .form-group:nth-last-child(2) {
    grid-column: 1 / -1;
}

.demo-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
}

.submit-demo-btn {
    grid-column: 1 / -1;
    justify-self: center;
    width: 200px;
}

.demo-confirmation {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.demo-confirmation i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.demo-confirmation h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

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

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

/* Tech Solutions Section */
.tech-solutions {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.tech-solutions h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-gray);
    font-size: 2.2rem;
    position: relative;
}

.tech-solutions h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.solution-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(255, 107, 0, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.solution-content p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution-image {
    max-width: 100%;
    height: auto;
    margin-top: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

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

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--white);
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.partner-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    position: relative;
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-partner {
    grid-column: 1 / -1;
    background-color: rgba(167, 29, 34, 0.05);
    border: 2px solid var(--primary-color);
    height: 150px;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: var(--box-shadow);
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('images/EBTF-Icon-Logo.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px;
    opacity: 0.1;
    z-index: -1;
}

.page-header h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

.about-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.about-tags span {
    background-color: var(--light-gray);
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.about-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-signature {
    margin-top: 30px;
    font-style: italic;
    color: var(--secondary-color);
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Services Page Styles */
.services-content {
    padding: 60px 0;
}

.service-category {
    margin-bottom: 60px;
}

.service-category h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

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

.service-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.other-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.other-service-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-logo {
    max-width: 150px;
    margin: 20px auto 0;
    display: block;
}

.payware-logo {
    max-width: 220px; /* Larger size for the IPpayware logo */
    margin: 15px auto 0;
}

.other-service-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Website Design Page Styles */
.web-design-intro {
    padding: 60px 0;
    text-align: center;
}

.web-design-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.web-design-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 30px 0;
}

.contact-call {
    display: inline-flex;
    align-items: center;
    background-color: var(--light-gray);
    padding: 15px 25px;
    border-radius: 50px;
    margin-top: 20px;
}

.contact-call i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.what-we-do {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.what-we-do h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.perfect-fit h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.fit-item {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.fit-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.pricing {
    padding: 60px 0;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pricing-feature i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.pricing-feature p {
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing-feature span {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.pricing-price {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.pricing-price h4 {
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.more-features {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.more-features h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* POS Equipment Page Styles */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 10px 0;
}

.breadcrumb p {
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.3s ease;
    border-radius: 0 0 5px 0;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

.equipment-content {
    padding: 60px 0;
}

.equipment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.compare-btn, .reset-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.compare-btn {
    background-color: var(--secondary-color);
}

.reset-btn {
    background-color: #666;
}

.equipment-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    flex-basis: 100%;
}

.equipment-header p {
    color: var(--secondary-color);
}

.sort-options {
    display: flex;
    align-items: center;
}

.sort-options label {
    margin-right: 10px;
    font-weight: 600;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.9rem;
}

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

.equipment-item {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.equipment-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.compare-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    user-select: none;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.compare-checkbox input {
    margin-right: 5px;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.equipment-image img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
}

.equipment-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.equipment-item .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.add-to-cart {
    background-color: var(--primary-color);
    width: 100%;
}

.read-more {
    background-color: var(--secondary-color);
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 80%;
    max-width: 800px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--primary-color);
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: var(--light-gray);
    font-weight: bold;
    color: var(--primary-color);
}

.comparison-table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* ROI Calculator Styles */
.roi-calculator {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: var(--box-shadow);
}

.roi-calculator h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.calculate-btn {
    background-color: var(--primary-color);
    margin-top: 10px;
}

.roi-results {
    margin-top: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    display: none;
}

.roi-results h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.savings-result {
    margin-bottom: 20px;
}

.savings-result p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.savings-result span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Lazy loading styles */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Contact Page Styles */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    height: 100%;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    background-color: rgba(255, 107, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--secondary-color);
    line-height: 1.5;
    margin-bottom: 5px;
}

.contact-text a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.contact-form {
    margin-top: 30px;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.testimonial-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-info {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.testimonial-meta {
    flex-grow: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.testimonial-company {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* FAQ Section */
.faqs {
    padding: var(--section-padding);
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-gray);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 107, 0, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

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

.cta .btn:hover {
    background-color: var(--light-gray);
}

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

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

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-contact h3,
.footer-nav h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: var(--white);
    transition: color 0.3s ease;
}

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

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-content .container,
    .contact-content .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: block;
        margin-top: 10px;
        padding-left: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .award-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .award-badge i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Testimonials Responsive */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Responsive */
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    /* Contact Page Responsive - Small Screens */
    .contact-info,
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-text h3 {
        font-size: 1rem;
    }
    
    .contact-text p,
    .contact-text a {
        font-size: 0.9rem;
    }
    
    /* Testimonials Responsive - Small Screens */
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    /* FAQ Responsive - Small Screens */
    .faq-question {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .solutions-grid,
    .service-grid,
    .other-services {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}
