/* Brand Colors - VendSmart */
:root {
    --vend-blue-light: #00C5F5; /* Electric blue from VEND text */
    --vend-blue-dark: #0088E8; /* Darker blue from VEND text */
    --smart-silver-light: #D0D0D0; /* Light silver from SMART text */
    --smart-silver-dark: #888888; /* Darker silver from SMART text */
    --logo-black: #2A2A2A; /* Black/charcoal from logo outlines */
    --logo-white: #FFFFFF; /* White outline from logo */
    --primary-color: var(--vend-blue-light);
    --secondary-color: var(--smart-silver-light);
    --dark-color: var(--logo-black);
    --light-color: #f8fafc;
    --text-color: #374151;
    --text-light: #6b7280;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.about-text h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Product Categories */
.product-categories {
    padding: 5rem 0;
    background: white;
}

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

.category-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.industries-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industries-section .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.industry-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.industry-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Service Features */
.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

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

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

/* Contact Bar */
.contact-bar {
    background: #00C5F5;
    color: #2A2A2A;
    padding: 8px 0;
    font-size: 0.9rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
}

.contact-bar .contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2A2A2A;
    text-decoration: none;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    white-space: nowrap;
    font-size: 0.85rem;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 36px;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

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

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

.nav-logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--vend-blue-light);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--vend-blue-light);
    padding-left: 1.75rem;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
    border: none;
}

.cta-button {
    background: var(--vend-blue-light);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--vend-blue-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(42, 42, 42, 0.92) 100%);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    z-index: 2;
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-feature i {
    color: #00C5F5;
    font-size: 1.2rem;
}

.hero-feature span {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}



.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-links {
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-links p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    width: 100%;
}

.hero-links a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-links a:hover {
    color: white;
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--vend-blue-light);
    color: white;
}

.btn-primary:hover {
    background: var(--vend-blue-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--smart-silver-light);
    color: var(--logo-black);
}

.btn-secondary:hover {
    background: #9CA3AF;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--vend-blue-light);
    color: white;
}



/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-overview .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.services-overview .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.services-overview .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f8fafc;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #f1f5f9;
    transform: scale(1.02);
}

.service-icon i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #374151;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.service-card.featured {
    border: 2px solid #3B82F6;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}

.learn-more {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.learn-more:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.why-choose .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: #f1f5f9;
    transform: scale(1.02);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon i {
    color: #374151;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.area-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.area-card p {
    color: #6b7280;
}

.view-all-areas {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

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

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

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
        width: 100%;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e5e7eb;
        text-align: center;
    }

    .dropdown-menu a:hover {
        padding-left: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero-links {
        margin-top: 1rem;
    }

    .hero-links p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .services-grid,
    .features-grid,
    .areas-grid,
    .categories-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .service-card,
    .feature {
        padding: 2rem;
    }
    
    .service-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    
    .service-card-link,
    .category-card-link,
    .area-card-link,
    .industry-card-link {
        transform: none !important;
    }
    
    .service-card-link:hover,
    .category-card-link:hover,
    .area-card-link:hover,
    .industry-card-link:hover {
        transform: none !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Contact bar responsive */
    .contact-bar .contact-info {
        justify-content: center;
        gap: 1rem;
        padding: 0 10px;
        flex-wrap: wrap;
    }
    
    .contact-item {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    /* Reduce container padding on mobile */
    .container {
        padding: 0 10px !important;
    }
    
    .nav-container {
        padding: 0 10px !important;
    }
    
    .contact-bar .contact-info {
        padding: 0 10px !important;
    }
    
    /* Ensure navbar stays on top */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Adjust hero section to account for fixed navbar */
    .hero {
        margin-top: 70px;
    }
    
    /* Ensure hamburger menu is visible and properly positioned */
    .hamburger {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-overview h2,
    .why-choose h2,
    .service-areas h2,
    .cta-section h2,
    .about-section h2,
    .product-categories h2,
    .industries-section h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .category-card,
    .industry-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact bar mobile responsive */
    .contact-bar .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 5px;
        align-items: center;
    }
    
    .contact-item {
        font-size: 0.75rem;
        text-align: center;
    }
    
    /* Further reduce container padding on very small screens */
    .container {
        padding: 0 5px !important;
    }
    
    .nav-container {
        padding: 0 5px !important;
    }
    
    .contact-bar .contact-info {
        padding: 0 5px !important;
    }
    
    /* Ensure proper spacing on very small screens */
    .contact-bar {
        padding: 8px 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    /* Enhanced mobile styles for area cards */
    .areas-grid {
        gap: 0.75rem;
    }
    
    .area-card {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .area-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    
    .area-icon i {
        font-size: 1.1rem;
    }
    
    .area-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .area-card p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .area-card ul {
        margin-bottom: 0.75rem;
    }
    
    .area-card ul li {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        padding-left: 1rem;
    }
    
    .area-card ul li:before {
        font-size: 0.7rem;
    }
    
    .area-actions {
        gap: 0.4rem;
    }
    
    .area-actions .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

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

@keyframes borderGlow {
    from {
        opacity: 0.3;
        transform: scale(1);
    }
    to {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.service-card,
.feature,
.area-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
.area-card:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Page Header - Deprecated - Now using hero sections */
/* .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

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

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

.service-item {
    background: #f8fafc;
}

.service-item {
    margin-bottom: 100px;
}

.service-item:last-child {
    margin-bottom: 0;
}

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

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.service-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #374151;
}

.service-features i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: white;
}

.additional-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.additional-services .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.additional-services .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Choose Services */
.why-choose-services {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit p {
    color: #6b7280;
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    /* .page-header h1 {
        font-size: 2.5rem;
    } */
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
    
    .service-cta {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form-container p,
.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-method p {
    margin-bottom: 0.25rem;
}

.contact-method p.small {
    font-size: 0.85rem;
    color: #9ca3af;
}

.contact-method a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-method a:hover {
    text-decoration: underline;
}

.emergency-contact {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #f59e0b;
}

.emergency-contact h3 {
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.emergency-contact h3 i {
    margin-right: 0.5rem;
}

.emergency-contact p {
    color: #92400e;
    margin-bottom: 1rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: #1f2937;
}

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

.social-contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-contact .social-links a:hover {
    background: #1d4ed8;
}

/* Service Areas Contact */
.service-areas-contact {
    padding: 80px 0;
    background: white;
}

.service-areas-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-areas-contact > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.area-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.area-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.area-item ul {
    list-style: none;
}

.area-item ul li {
    margin-bottom: 0.5rem;
}

.area-item ul li a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.area-item ul li a:hover {
    color: var(--primary-green);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Location Page Styles */
.location-overview {
    padding: 80px 0;
    background: white;
}

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

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.location-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.location-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0.25rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Downtown Services */
.downtown-services {
    padding: 80px 0;
    background: #f8fafc;
}

.downtown-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.downtown-services .service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.downtown-services .service-card ul li {
    padding: 0.25rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.downtown-services .service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Downtown Benefits */
.downtown-benefits {
    padding: 80px 0;
    background: white;
}

.downtown-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Downtown Areas */
.downtown-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.downtown-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Free Placement */
.free-placement {
    padding: 80px 0;
    background: white;
}

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

.placement-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.placement-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.placement-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #374151;
}

.benefit-item i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.placement-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive adjustments for location pages */
@media (max-width: 768px) {
    .location-content,
    .placement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-text h2,
    .placement-text h2 {
        font-size: 2rem;
    }
    
    .placement-cta {
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-bottom: 0.5rem;
    }
}

/* Free Machine Page Styles */
.free-machine-overview {
    padding: 80px 0;
    background: white;
}

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

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.overview-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.program-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0.25rem;
}

.highlight-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.highlight-item p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Qualification Criteria */
.qualification-criteria {
    padding: 80px 0;
    background: #f8fafc;
}

.qualification-criteria h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.qualification-criteria > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.criteria-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.criteria-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.criteria-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.criteria-card p {
    color: #6b7280;
}

/* Application Form Section - Enhanced */
.application-form-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.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(0, 197, 245, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.125rem;
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--primary-color);
}

.application-form .btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
}

/* Qualification Criteria - Enhanced */
.qualification-criteria {
    padding: 5rem 0;
    background: white;
}

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

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

.criteria-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.criteria-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

/* Free Machine Overview - Enhanced */
.free-machine-overview {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.overview-text h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.program-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.highlight-item h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Revenue Sharing */
.revenue-sharing {
    padding: 80px 0;
    background: #f8fafc;
}

.revenue-sharing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.revenue-sharing > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.revenue-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.revenue-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

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

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

.revenue-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

.revenue-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.revenue-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.revenue-card ul {
    list-style: none;
    text-align: left;
}

.revenue-card ul li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.revenue-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Responsive adjustments for free machine page */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qualification-criteria h2 {
        font-size: 2rem;
    }
    
    .application-form {
        padding: 2rem;
    }
    
    .revenue-card.featured {
        transform: none;
    }
    
    .revenue-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .criteria-grid,
    .revenue-grid {
        grid-template-columns: 1fr;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 4rem;
    color: #10b981;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

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

.step-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.step-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-info-thank-you {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.contact-info-thank-you h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info-thank-you p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contact-methods-thank-you {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method-thank-you {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-method-thank-you:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-method-thank-you i {
    font-size: 1.2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for thank you page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .next-steps {
        padding: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods-thank-you {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Micro-Market Page Styles */
.micro-market-overview {
    padding: 80px 0;
    background: white;
}

.market-benefits {
    display: grid;
    gap: 1.5rem;
}

/* Setup Process */
.setup-process {
    padding: 80px 0;
    background: #f8fafc;
}

.setup-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.setup-process > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.step-content ul {
    list-style: none;
}

.step-content ul li {
    padding: 0.25rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.step-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Space Requirements */
.space-requirements {
    padding: 80px 0;
    background: white;
}

.space-requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.space-requirements > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.requirement-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-card.featured {
    background: white;
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

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

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

.space-size {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

.requirement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.requirement-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.requirement-card ul {
    list-style: none;
    text-align: left;
}

.requirement-card ul li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Equipment & Technology */
.equipment-technology {
    padding: 80px 0;
    background: #f8fafc;
}

.equipment-technology h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.equipment-technology > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.equipment-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.equipment-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.equipment-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.equipment-item p {
    color: #6b7280;
}

/* ROI & Benefits */
.roi-benefits {
    padding: 80px 0;
    background: white;
}

.roi-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.roi-benefits > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.roi-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.roi-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 1rem 0;
}

.roi-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.roi-card p {
    color: #6b7280;
}

/* Beach Services */
.beach-services {
    padding: 80px 0;
    background: #f8fafc;
}

.beach-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.beach-benefits {
    padding: 80px 0;
    background: white;
}

.beach-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.beach-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.beach-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .requirement-card.featured {
        transform: none;
    }
    
    .requirement-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .process-steps,
    .requirements-grid,
    .equipment-grid,
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

/* Locations Page Styles */
.jacksonville-overview {
    padding: 80px 0;
    background: white;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Service Areas Grid */
.service-areas {
    padding: 80px 0;
    background: #f8fafc;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-areas > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f8fafc;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.area-card.featured {
    border: 1px solid #e2e8f0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.area-card.featured:hover {
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    background: #f1f5f9;
    transform: scale(1.05);
}

.area-icon i {
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon i {
    color: #374151;
}

.area-card.featured .area-icon {
    background: #f8fafc;
}

.area-card.featured .area-icon i {
    color: #64748b;
}

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
}

.area-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.area-card h3 a:hover {
    color: #10b981;
}

.area-card p {
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.area-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.area-card ul li {
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.area-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #64748b;
    font-weight: bold;
    font-size: 0.85rem;
}

.area-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Services by Location */
.services-by-location {
    padding: 80px 0;
    background: white;
}

.services-by-location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Responsive adjustments for locations page */
@media (max-width: 768px) {
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .area-card {
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 0;
    }
    
    .area-card.featured {
        transform: none;
        border: 1px solid #e2e8f0;
    }
    
    .area-card.featured:hover {
        transform: translateY(-2px);
    }
    
    .area-card:hover {
        transform: translateY(-2px);
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .area-icon i {
        font-size: 1.25rem;
    }
    
    .area-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .area-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .area-card ul {
        margin-bottom: 1rem;
    }
    
    .area-card ul li {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        padding-left: 1.25rem;
    }
    
    .area-card ul li:before {
        font-size: 0.75rem;
    }
    
    .area-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .area-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Related Locations Section */
.related-locations {
    padding: 80px 0;
    background: #f8fafc;
}

.related-locations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.related-locations > .container > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.related-area {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-area:hover {
    transform: translateY(-3px);
}

.related-area h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.related-area h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-area h3 a:hover {
    color: var(--primary-green);
}

.related-area p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.view-all-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive adjustments for related locations */
@media (max-width: 768px) {
    .related-areas-grid {
        grid-template-columns: 1fr;
    }
} 

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.service-card-link:hover .service-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-link:hover .learn-more {
    color: var(--primary-color);
}

/* Category Card Links */
.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.category-card-link:hover .category-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Area Card Links */
.area-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.area-card-link:hover .area-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Industry Card Links */
.industry-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

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

.industry-card-link:hover .industry-card {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} 