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

:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

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

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Language Switcher */
.language-switcher-item {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 0.25rem 0.5rem;
}

.lang-link:hover {
    color: var(--primary-color);
}

.lang-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.lang-separator {
    color: var(--text-light);
    font-weight: 300;
}

@media (max-width: 768px) {
    .language-switcher-item {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding-top: 1rem;
        margin-top: 0.5rem;
    }
    
    .language-switcher {
        justify-content: center;
        padding: 0.5rem 0;
    }
}

/* Language Fallback Notice */
.language-fallback-notice {
    background: #fff3cd;
    border-bottom: 2px solid #ffc107;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: #856404;
    position: relative;
    z-index: 999;
}

.language-fallback-notice .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.language-fallback-notice span {
    display: inline-block;
}

.language-fallback-notice .notice-en {
    font-style: italic;
    opacity: 0.8;
}

.language-fallback-notice .notice-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #856404;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.language-fallback-notice .notice-close:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .language-fallback-notice .container {
        flex-wrap: wrap;
        text-align: center;
        padding-right: 2.5rem;
    }
    
    .language-fallback-notice .notice-close {
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .language-fallback-notice span {
        display: block;
        width: 100%;
    }
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.7) 0%, rgba(0, 82, 163, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0;
    color: var(--white);
}

.hero-content .container {
    position: relative;
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
    line-height: 1.6;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

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

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

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

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--white);
}

.services-intro-image {
    text-align: center;
    margin: 3rem 0 4rem;
}

.services-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card .service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.service-card > h3,
.service-card > p,
.service-card > a {
    padding: 0 2rem;
}

.service-card > h3 {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-card > p {
    padding-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card > a {
    padding-bottom: 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    transition: transform 0.3s;
}

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

/* Why Choose Us */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-choose h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

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

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

.contact-image-section {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-image-small {
    margin-top: 2rem;
    text-align: center;
}

.contact-image-small img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--secondary-color);
}

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

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

.contact-item address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

/* Form Styles */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.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;
}

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

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-section address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

/* Page Header (for service pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Page Content */
.service-page-content {
    padding: 4rem 0;
    background: var(--white);
}

.service-details {
    max-width: 1000px;
    margin: 0 auto;
}

.service-details {
    max-width: 900px;
    margin: 0 auto;
}

/* About Page Two-Column Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content .intro-section {
    margin-bottom: 0;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.about-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.about-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg-light);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image-wrapper:first-child {
    flex: 1;
}

.about-image-wrapper:first-child .about-image {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
}

.about-image-wrapper:last-child {
    flex: 0.8;
}

.about-image-wrapper:last-child .about-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        position: static;
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .about-image-wrapper:first-child .about-image,
    .about-image-wrapper:last-child .about-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .about-layout {
        gap: 2rem;
    }
    
    .about-images {
        flex-direction: column;
    }
    
    .about-image-wrapper:first-child .about-image,
    .about-image-wrapper:last-child .about-image {
        min-height: 250px;
    }
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-details h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-details ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-details li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.service-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.service-benefits h3 {
    margin-top: 0;
}

/* Service Page Images */
.service-image-section {
    margin: 0 0 3rem 0;
    text-align: center;
}

.service-feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin: 0;
}

/* Security Audits Enhanced Styling */
.section-intro-large {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.audit-categories {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3rem 0;
}

.audit-category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2.5rem;
}

.audit-category-card:last-child {
    margin-bottom: 0;
}

.audit-category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.audit-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.audit-icon,
.testing-icon {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--white);
    text-transform: uppercase;
}

.audit-category-header h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin: 0;
}

.audit-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.audit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.audit-detail-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.audit-detail-item strong {
    display: block;
    font-size: 1.125rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.audit-detail-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.audit-deliverables {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.audit-deliverables h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

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

.deliverable-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.deliverable-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.deliverable-card h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.audit-process {
    margin: 4rem 0;
}

.audit-process h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ROI & Cost Savings Section */
.roi-section {
    padding: 5rem 0;
    background: var(--white);
}

.roi-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.roi-card {
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.roi-card.cost-prevention {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-top: 4px solid #4caf50;
}

.roi-card.cost-breach {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-top: 4px solid #f44336;
}

.roi-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.roi-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.roi-amount {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.roi-benefits,
.roi-costs {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.roi-benefits li,
.roi-costs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.roi-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.roi-costs li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

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

.roi-benefit {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.roi-benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.roi-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.roi-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Mobile Menu Overlay - EXACTLY like working version */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 70%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 60px 0 0 0;
        gap: 0;
        z-index: 1001;
        overflow-y: auto;
    }

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

    .nav-menu::after {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: var(--text-color);
        cursor: pointer;
        font-weight: normal;
        line-height: 1;
        z-index: 10;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1.25rem 1.5rem;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s, color 0.2s;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: #f5f5f5;
        color: var(--primary-color);
    }

    .nav-dropdown {
        position: static;
    }

    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        pointer-events: auto;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #fafafa;
        padding: 0;
        margin: 0;
        border-radius: 0;
        display: none;
    }

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

    .dropdown-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu a {
        padding: 1rem 1.5rem 1rem 3rem;
        color: var(--text-color);
        cursor: pointer;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
    }

    .dropdown-menu a:hover {
        background: #f0f0f0;
        color: var(--primary-color);
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1002;
        position: relative;
        background: transparent;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    .nav-toggle span {
        pointer-events: none;
    }

    .hero-content h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .services-overview h2,
    .why-choose h2,
    .contact-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

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

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

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

    .service-card {
        margin-bottom: 1.5rem;
    }

    .service-image {
        max-height: 200px;
    }

    .roi-comparison {
        flex-direction: column;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1.125rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-logo-image {
        height: 40px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .roi-section h2 {
        font-size: 2rem;
    }

    .audit-category-card {
        padding: 1.5rem;
    }

    .audit-category-header {
        flex-direction: column;
        text-align: center;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .section-intro-large {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer-logo-image {
        height: 35px;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-links {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Benefits Section - Modern Design */
.benefits-section {
    margin: 4rem 0;
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
}

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

.benefit-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transition: width 0.3s;
}

.benefit-card-modern:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card-modern:hover::before {
    width: 100%;
    opacity: 0.05;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.benefit-card-modern h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-card-modern p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image-right {
    flex-shrink: 0;
}

.content-image-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@media (max-width: 768px) {
    .benefits-section h2 {
        font-size: 2rem;
    }

    .benefits-grid-modern {
        grid-template-columns: 1fr;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image-right {
        order: -1;
    }
}

/* Blog Styles */
.blog-content {
    padding: 4rem 0;
}

.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.blog-intro p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    font-size: 4rem;
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.blog-card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-card-link:hover {
    color: var(--primary-dark);
}

/* Blog Post Content */
.blog-post-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post-content h1 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-content h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.blog-post-content strong {
    color: var(--text-color);
}

.blog-post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.blog-post-navigation a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-post-navigation a:hover {
    color: var(--primary-dark);
}

/* FAQ Styles */
.faq-content {
    padding: 4rem 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.faq-intro p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--primary-color);
}

.faq-cta {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.faq-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Policy Content Styles */
.policy-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.policy-content h2 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--text-color);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.policy-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-content h1 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h4 {
        font-size: 1.125rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section ul {
        font-size: 0.9rem;
    }
}

/* Lazy Loading Styles */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: var(--bg-light);
    min-height: 200px;
}

.lazy-image.lazy-loading {
    opacity: 0.5;
    filter: blur(5px);
}

.lazy-image.lazy-loaded {
    opacity: 1;
    filter: blur(0);
}

.lazy-image.lazy-error {
    opacity: 0.3;
    background: var(--bg-light);
}

/* Prevent layout shift during lazy loading */
img[data-src] {
    min-height: 200px;
    background: var(--bg-light);
    display: block;
}

.service-image[data-src] {
    min-height: 220px;
}

/* Performance optimizations */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Font loading optimization */
.fonts-loaded body {
    font-display: swap;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .lazy-image {
        transition: none;
    }
}

