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

:root {
    --primary-color: #e91e63;
    --primary-hover: #c2185b;
    --secondary-color: #1e3a5f;
    --dark-navy: #1a2942;
    --darker-navy: #0f1d2f;
    --accent-color: #00d9ff;
    --text-dark: #1a1a1a;
    --text-light: #8b9db8;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e8ecf1;
    --success-color: #28a745;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo h2 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.nav-links .btn-primary {
    color: white !important;
}

.nav-links .btn-primary:hover {
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-size: 15px;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--dark-navy);
    border-color: white;
}

.btn-secondary:hover {
    background: var(--bg-light);
    color: var(--dark-navy);
    border-color: var(--bg-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: white;
    padding: 85px 0 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--text-light);
    font-size: 16px;
}

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

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

.breadcrumb li:last-child span {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.hero-card {
    background: white;
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.hero-card i {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.hero-card p {
    font-size: 16px;
    color: var(--text-light);
}

/* Fullscreen Hero Styles */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0;
    background: none;
    padding-bottom: 80px;
}

.hero-fullscreen .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-image: url('../images/hero-odoo-accounting-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: 
        linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%),
        linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 60%);
    z-index: 2;
}

.hero-content-fullscreen {
    position: absolute;
    left: calc((100% - 1200px) / 2);
    bottom: 5px;
    z-index: 3;
    max-width: 500px;
    margin-left: 0;
    padding-left: 100px;
}

.hero-text-block {
    color: white;
    padding: 0;
}

.hero-title-large {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle-large {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

.hero-description-large {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
}

.hero-button-group {
    display: flex;
    gap: 20px;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

/* Certification Section */
.certification-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--bg-light), white);
}

.certification-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.certification-icon {
    font-size: 64px;
    color: #ffd700;
}

.certification-content h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.certification-content p {
    color: var(--text-light);
    font-size: 16px;
}

.certification-placeholder {
    min-width: 220px;
}

.placeholder-box {
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #fff5ed;
}

.placeholder-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.placeholder-box p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.placeholder-box span {
    font-size: 14px;
    color: var(--text-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Target Markets */
.target-markets {
    padding: 100px 0;
    background: white;
}

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

.market-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.market-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
    transform: translateY(-5px);
}

.market-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #f48fb1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.market-icon i {
    font-size: 32px;
    color: white;
}

.market-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.market-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.market-features {
    list-style: none;
}

.market-features li {
    padding: 8px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.market-features i {
    color: var(--success-color);
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-icon.blue { background: linear-gradient(135deg, #4a90e2, #67b5ff); }
.feature-icon.green { background: linear-gradient(135deg, #28a745, #5fd47f); }
.feature-icon.purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.feature-icon.orange { background: linear-gradient(135deg, var(--primary-color), #f48fb1); }
.feature-icon.red { background: linear-gradient(135deg, #ef4444, #f87171); }
.feature-icon.teal { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.feature-icon.indigo { background: linear-gradient(135deg, #6366f1, #818cf8); }
.feature-icon.pink { background: linear-gradient(135deg, #ec4899, #f472b6); }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Reports Section */
.reports-section {
    padding: 100px 0;
    background: white;
}

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

.report-item {
    display: flex;
    gap: 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.report-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
}

.report-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #f48fb1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-icon i {
    font-size: 24px;
    color: white;
}

.report-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

/* Odoo Section */
.odoo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.odoo-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.odoo-features {
    margin-bottom: 35px;
}

.odoo-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.odoo-feature-item i {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--success-color);
    margin-top: 3px;
}

.odoo-feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.odoo-feature-item p {
    color: var(--text-light);
    font-size: 15px;
}

.odoo-visual {
    position: relative;
}

.odoo-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.module-icon {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.module-icon:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.module-icon.highlight {
    background: linear-gradient(135deg, var(--primary-color), #f48fb1);
    border-color: var(--primary-color);
    color: white;
}

.module-icon i {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
    color: var(--dark-navy);
}

.module-icon.highlight i {
    color: white;
}

.module-icon span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.module-icon.highlight span {
    color: white;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
    background: white;
}

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

.compliance-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.compliance-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.2);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #f48fb1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.compliance-icon i {
    font-size: 32px;
    color: white;
}

.compliance-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.compliance-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.compliance-card ul {
    list-style: none;
}

.compliance-card li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.compliance-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Why SafeComs */
.why-safecoms {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.why-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.why-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(233, 30, 99, 0.1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #f48fb1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 28px;
    color: white;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

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

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    color: rgba(0, 102, 204, 0.1);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* Team Excellence Section */
.team-excellence-section {
    padding: 100px 0;
    background: white;
}

.team-excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.excellence-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.team-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.team-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.excellence-features {
    list-style: none;
}

.excellence-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.excellence-features i {
    color: var(--success-color);
    font-size: 18px;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image {
    overflow: hidden;
    border-radius: 16px;
}

.services-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.services-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

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

.stat-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.services-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Manufacturing Excellence */
.manufacturing-excellence {
    padding: 100px 0;
    background: white;
}

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

.manufacturing-image {
    overflow: hidden;
    border-radius: 16px;
}

.manufacturing-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.manufacturing-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.manufacturing-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.manufacturing-benefits {
    list-style: none;
}

.manufacturing-benefits li {
    padding: 15px 0;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.manufacturing-benefits i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.manufacturing-benefits strong {
    color: var(--text-dark);
}

/* Testimonial Author Avatar */
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Success Story Banner */
.success-story-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.success-image {
    overflow: hidden;
    border-radius: 16px;
}

.success-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.success-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.success-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.metric-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.metric-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Partnership Section */
.partnership-section {
    padding: 100px 0;
    background: white;
}

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

.partnership-image {
    overflow: hidden;
    border-radius: 16px;
}

.partnership-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.partnership-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.partnership-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.partnership-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.partnership-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.partnership-benefits i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Features in Action */
.features-in-action {
    padding: 100px 0;
    background: white;
}

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

.action-image {
    overflow: hidden;
    border-radius: 16px;
}

.action-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.action-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.action-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.action-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.action-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.action-feature i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.action-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.action-feature p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.cta-feature i {
    font-size: 20px;
    color: #4CAF50;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-dark);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges .badge {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .team-excellence-content,
    .services-showcase-content,
    .manufacturing-content,
    .success-banner-content,
    .partnership-content,
    .action-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-features {
        grid-template-columns: 1fr;
    }
    
    .services-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-box h3 {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .hero-title-large {
        font-size: 36px;
    }
    
    .hero-subtitle-large {
        font-size: 24px;
    }
    
    .hero-description-large {
        font-size: 15px;
    }
    
    .hero-content-fullscreen {
        max-width: 90%;
        padding-left: 30px;
    }
    
    .hero-fullscreen {
        min-height: 80vh;
        padding-bottom: 60px;
        align-items: flex-end;
    }
    
    .hero-fullscreen .container {
        padding-left: 0;
    }
    
    .hero-main-image {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .odoo-content {
        grid-template-columns: 1fr;
    }
    
    .certification-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title-large {
        font-size: 32px;
    }
    
    .hero-subtitle-large {
        font-size: 20px;
    }
    
    .hero-description-large {
        font-size: 14px;
    }
    
    .hero-text-block {
        padding: 0;
    }
    
    .hero-content-fullscreen {
        max-width: calc(100% - 30px);
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-fullscreen {
        padding-bottom: 40px;
        align-items: flex-end;
    }
    
    .hero-fullscreen .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .odoo-modules {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.feature-card, .market-card, .why-card {
    animation: fadeInUp 0.6s ease-out;
}
