:root {
    --primary: #0f172a; /* Deep Navy Blue */
    --primary-light: #1e293b;
    --accent: #f97316; /* Safety Orange */
    --accent-hover: #ea580c;
    --text-dark: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-lg, .btn-phone-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 15px;
    transition: var(--transition);
}

.btn-whatsapp-lg {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-lg:hover {
    background-color: #1ebe5c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone-lg {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.btn-phone-lg:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

/* Navbar */
.mobile-search-form { display: none; }
.header-search-form { width: 350px; }

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links > a:not(.nav-btn) {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links > a:not(.nav-btn)::after, .nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links > a:not(.nav-btn):hover::after, .nav-dropdown:hover > a::after {
    width: 100%;
}

.nav-links a:not(.nav-btn):hover {
    color: var(--accent);
}

.nav-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero-title span {
    color: var(--accent);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--white);
    border-radius: 50%;
    z-index: -1;
    box-shadow: var(--shadow-xl);
}

.hero-main-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.bounce-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: var(--white);
    position: relative;
    margin-top: -40px;
    z-index: 10;
}

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

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background-color: var(--accent);
    color: var(--white);
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    padding: 20px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .overlay-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.product-info {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-action {
    display: flex;
    justify-content: flex-end;
}

.btn-text {
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
}

.product-card:hover .btn-text {
    color: var(--accent-hover);
}

.btn-text i {
    transition: transform 0.3s ease;
}

.product-card:hover .btn-text i {
    transform: translateX(5px);
}

/* Product Detail Page */
.product-detail-page {
    padding-top: 100px;
    background-color: var(--bg-light);
    min-height: calc(100vh - 300px);
}

.breadcrumb-section {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

.breadcrumb .separator {
    font-size: 0.7rem;
    color: #cbd5e1;
}

.breadcrumb .current {
    color: var(--text-light);
}

.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-detail-image {
    position: relative;
}

.image-showcase {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.image-showcase img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #16a34a;
    background: #dcfce7;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.price-box {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-weight: 600;
    color: var(--text-light);
}

.price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.description-box {
    margin-bottom: 30px;
}

.description-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
}

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

.features-box {
    margin-bottom: 40px;
}

.features-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--accent);
}

.product-extra-section {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

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

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

.detail-banner {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.extra-text {
    text-align: center;
    max-width: 800px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.8;
    max-width: 400px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-links a {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.contact-list li i {
    color: var(--accent);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-list a {
    color: #94a3b8;
}

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

.footer-bottom {
    background-color: #0b1120;
    padding: 25px 0;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Floating Buttons */
.whatsapp-float, .phone-float {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float {
    right: 30px;
    background-color: #25d366;
}

.phone-float {
    right: 30px;
    bottom: 100px;
    background-color: var(--primary);
}

.whatsapp-float:hover, .phone-float:hover {
    transform: scale(1.1);
}

.tooltip {
    position: absolute;
    right: 75px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip, .phone-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

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

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

.stat-box {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Sectors Section */
.sectors-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.sector-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.sector-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    text-align: center;
}

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

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

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

.cta-action {
    display: flex;
    justify-content: center;
}

/* Contact Page Styles */
.page-hero {
    padding: 180px 0 100px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

.contact-modules {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

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

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.contact-card:hover .icon-wrapper {
    background: var(--accent);
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

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

.contact-card .sub-text {
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 10px;
    font-weight: 500;
}

.contact-form-section {
    padding: 60px 0 100px;
}

.form-wrapper {
    display: flex;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-info {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.form-info p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.form-logo {
    max-width: 200px;
    background: white;
    padding: 15px;
    border-radius: 12px;
}

.form-box {
    flex: 1.5;
    padding: 60px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.map-section {
    line-height: 0;
}

/* Corporate About Page Redesign */
.corporate-about {
    background: var(--white);
    color: var(--text-dark);
}

.corp-hero {
    padding: 120px 0 0;
    text-align: center;
    background: var(--bg-light);
    overflow: hidden;
}

.corp-hero-title {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.corp-hero-title span {
    color: var(--accent);
}

.corp-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.corp-hero-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(20px);
}

.corp-hero-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.corp-manifesto {
    padding: 120px 0;
    background: var(--white);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corp-heading {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.corp-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.corp-signature {
    margin-top: 40px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--primary);
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.manifesto-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 20px;
}

.corp-stat {
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.corp-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-big {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
    line-height: 1;
    min-width: 120px;
}

.stat-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.5;
}

.corp-values {
    padding: 100px 0 120px;
    background: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.value-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
}

.value-item p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.05rem;
}

.corp-cta {
    padding: 120px 0;
    background: var(--bg-light);
}

.corp-heading-light {
    font-size: 3rem;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.corp-subtitle-light {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Catalog Layout */
.catalog-section {
    padding: 60px 0 100px;
    background-color: var(--bg-light);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    font-weight: 700;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.cat-link {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.cat-link i {
    width: 24px;
    color: var(--text-light);
    transition: var(--transition);
}

.cat-link .count {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 2px 8px;
    border-radius: 20px;
}

.cat-link:hover {
    background: rgba(249, 115, 22, 0.05);
    color: var(--accent);
}

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

.cat-link.active {
    background: var(--primary);
    color: var(--white);
}

.cat-link.active i, .cat-link.active .count {
    color: var(--white);
}

.cat-link.active .count {
    background: rgba(255,255,255,0.2);
}

.help-widget {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border: none;
}

.help-widget i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.help-widget h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.help-widget p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.catalog-header h2 {
    font-size: 1.4rem;
    color: var(--primary);
}

.view-options {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.custom-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
}

.custom-select:focus {
    border-color: var(--accent);
}

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

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.filter-item {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* References Section */
.references-section {
    padding: 60px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.references-section .section-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.reference-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px; /* Big spacing between logos */
    transition: var(--transition);
}

.reference-item img {
    height: 50px;
    max-width: 250px;
    object-fit: contain;
    transition: var(--transition);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Blog Page Styles */
.blog-list-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

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

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

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.blog-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-info h2 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary);
}

.blog-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.blog-detail-page {
    padding-top: 100px;
    background: var(--bg-light);
}

.blog-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 80px;
}

.blog-main-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
    max-height: 400px;
    object-fit: cover;
}

.blog-article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-article-body h3 {
    margin: 30px 0 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.blog-article-body p {
    margin-bottom: 20px;
}

.blog-article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-article-body li {
    margin-bottom: 10px;
}

.blog-cta {
    background: rgba(249, 115, 22, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
    border: 1px dashed var(--accent);
}

.blog-cta h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .vm-grid { grid-template-columns: 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; margin-bottom: 30px; }
    .marquee-container::before, .marquee-container::after { width: 50px; }
    .corp-hero-title { font-size: 3rem; }
    .manifesto-grid { grid-template-columns: 1fr; gap: 50px; }
    .values-grid { grid-template-columns: 1fr; }
    .stat-big { font-size: 3.5rem; min-width: 90px; }
    
    .header-search-form { display: none !important; }
    .nav-btn { display: none !important; }
    .mobile-search-form { display: block; border-top: 1px solid var(--border-color); margin-top: 10px; padding-top: 15px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .features-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .hero { padding: 120px 0 60px; }
    .features-list { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 2.2rem; }
    .cta-content h2 { font-size: 1.8rem; }
    .form-wrapper { flex-direction: column; }
    .form-info, .form-box { padding: 40px; }
    .input-row { flex-direction: column; gap: 0; }
    .page-hero h1 { font-size: 2.5rem; }
    .blog-content-wrapper { padding: 30px; }
    .blog-main-title { font-size: 2rem; }
    .mega-menu { display: none !important; } /* Hide mega menu on mobile, users can click Ürünler */
    .nav-dropdown .fa-chevron-down { display: none !important; }
    
    .products-grid, .full-products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}
