@import url('../images/css2.bin');

:root {
    --primary: #1e3a5f;
    --primary-dark: #152b45;
    --primary-light: #2a4d7a;
    --accent: #f4c430;
    --accent-dark: #d4a830;
    --secondary: #4D4D4D;
    --background: #FFFFFF;
    --background-alt: #F5F7FA;
    --text: #1a1a1a;
    --text-muted: #666666;
    --border: #E0E0E0;
    --shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    --shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.2);
    --transition: all 0.3s ease;
    --container: 1200px;
    --radius: 8px;
}

/* Utilities for full width form controls (inline style removal) */
.full-width { width: 100%; display: inline-block; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Figtree', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--background); }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: 48px; }
h2 { font-size: 40px; margin-bottom: 15px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-light { background: var(--background-alt); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { color: var(--primary); margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 18px; }
.section-header h3 { color: var(--text-muted); font-weight: 400; font-size: 20px; margin-top: 10px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; font-family: 'Poppins', sans-serif; font-weight: 600; border-radius: var(--radius); text-align: center; }
.btn-primary { background: var(--accent); color: var(--primary); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Top Bar */
.top-bar { background: var(--primary); padding: 12px 0; font-size: 14px; }
.top-bar-inner { display: flex; justify-content: flex-end; gap: 30px; }
.top-bar a { color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 8px; }
.top-bar a:hover { color: var(--accent); }
.top-bar i { font-size: 14px; }

/* Main Header */
.main-header { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.main-header .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.main-header .logo img { height: 50px; width: auto; }
.brand-name { font-family: 'Poppins', sans-serif; font-weight: 700; color: #333; font-size: 18px; margin-left: 8px; display: inline-block; vertical-align: middle; }
.main-nav ul { display: flex; gap: 25px; }
.main-nav a { font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--text); padding: 10px 0; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav .has-submenu { position: relative; }
.main-nav .submenu { position: absolute; top: 100%; left: 0; background: #fff; box-shadow: var(--shadow); min-width: 200px; display: none; }
.main-nav .has-submenu:hover .submenu { display: block; }
.main-nav .submenu li { padding: 10px 20px; }
.main-nav .submenu a { white-space: nowrap; }
.mobile-toggle { display: none; cursor: pointer; font-size: 24px; }

/* Hero Main */
.hero-main { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 180px 0 100px; text-align: center; position: relative; overflow: hidden; }
.hero-main::before { content: ''; position: absolute; inset: 0; background: url('../images/photo-1513828583688-c52646db42da.bin') center/cover; opacity: 0.1; }
.hero-content { position: relative; z-index: 1; }
.hero-main h1 { font-size: 52px; color: #fff; margin-bottom: 20px; }
.hero-main p { font-size: 20px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }
.hero-buttons .btn-outline { border-color: #fff; color: #fff; }
.hero-buttons .btn-outline:hover { background: #fff; color: var(--primary); }

/* Partner CTA */
.partner-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 60px 0; text-align: center; }
.partner-content h2 { color: #fff; margin-bottom: 15px; }
.partner-content p { color: rgba(255,255,255,0.9); margin-bottom: 25px; font-size: 18px; }

/* About Company */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { color: var(--primary); }
.about-text h3 { font-size: 24px; color: var(--primary); margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 25px; }
.about-image img { border-radius: var(--radius); }

/* Refining Section */
.refining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.refining-image img { border-radius: var(--radius); }
.refining-content h2 { color: var(--primary); margin-bottom: 15px; }
.refining-content p { color: var(--text-muted); margin-bottom: 25px; }
.refining-content .btn-outline { margin-left: 15px; border-color: var(--primary); color: var(--primary); }

/* Catalog Grid */
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.catalog-card { background: #fff; padding: 40px 25px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.catalog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.catalog-card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.catalog-card h4 { color: var(--primary); margin-bottom: 15px; }
.catalog-card p { color: var(--text-muted); font-size: 14px; }

/* Business Model */
.business-model { background: #fff; }
.model-list { max-width: 800px; margin: 0 auto 40px; }
.model-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.model-list li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.model-list li i { color: var(--accent); font-size: 14px; }

/* Mission Tabs */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.mission-tabs { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.tab-buttons { display: flex; gap: 10px; margin-bottom: 25px; border-bottom: 2px solid var(--border); padding-bottom: 15px; }
.tab-btn { background: none; border: none; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-muted); cursor: pointer; padding: 10px 20px; }
.tab-btn.active { color: var(--primary); border-bottom: 2px solid var(--primary); margin-bottom: -17px; }
.tab-content { display: none; color: var(--text-muted); }
.tab-content.active { display: block; }
.mission-image img { border-radius: var(--radius); width: 100%; height: 300px; object-fit: cover; }

/* Core Operations */
.core-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.core-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.core-card img { width: 100%; height: 200px; object-fit: cover; }
.core-card h4 { color: var(--primary); padding: 20px 20px 5px; }
.core-card p { color: var(--text-muted); padding: 0 20px 20px; font-size: 14px; }

/* Stats Section */
.stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; text-align: center; }
.stat-item { padding: 20px; }
.stat-item img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 15px; }
.stat-item h4 { color: var(--accent); font-size: 24px; margin-bottom: 5px; }
.stat-item p { color: rgba(255,255,255,0.9); font-size: 14px; }

/* Why Choose */
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-image img { border-radius: var(--radius); }
.why-content h2 { color: var(--primary); margin-bottom: 20px; }
.why-content p { color: var(--text-muted); margin-bottom: 15px; }

/* Insights */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.insight-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.insight-card img { width: 100%; height: 200px; object-fit: cover; }
.insight-card h4 { color: var(--primary); padding: 20px 20px 10px; }
.insight-card p { color: var(--text-muted); padding: 0 20px 20px; font-size: 14px; }

/* Process Grid */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-card { background: #fff; padding: 40px 25px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.process-card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.process-card h4 { color: var(--primary); margin-bottom: 15px; }
.process-card p { color: var(--text-muted); font-size: 14px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card h4 { color: var(--primary); padding: 20px 20px 10px; }
.service-card p { color: var(--text-muted); padding: 0 20px 15px; font-size: 14px; }
.service-card a { display: block; padding: 0 20px 20px; color: var(--primary); font-weight: 600; font-size: 14px; }

/* Refining Info */
.refining-info { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.refining-info h2 { color: #fff; margin-bottom: 20px; }
.refining-info p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.refining-info .btn-outline { border-color: #fff; color: #fff; }
.refining-info .btn-outline:hover { background: #fff; color: var(--primary); }
.refining-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.refining-info-image img { border-radius: var(--radius); }

/* Clients */
.clients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.clients-grid img { height: 60px; width: auto; filter: grayscale(100%); transition: var(--transition); }
.clients-grid img:hover { filter: grayscale(0%); }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0; text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 25px; }
.cta-section .btn-primary { background: var(--accent); color: var(--primary); }

/* Footer */
.main-footer { background: var(--primary-dark); color: #fff; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo img { height: 50px; margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }
.footer-info { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-info li { margin-bottom: 8px; }
.footer-info strong { color: var(--accent); }
.footer-column h4 { color: var(--accent); margin-bottom: 20px; }
.footer-column a { color: rgba(255,255,255,0.7); font-size: 14px; display: block; margin-bottom: 12px; }
.footer-column a:hover { color: var(--accent); }
.footer-column i { margin-right: 10px; }
.footer-column li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.7); margin-bottom: 12px; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }

/* WhatsApp Float */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background: #25D366; color: #fff; border-radius: 50px; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; animation: wpulse 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); background: #20BD5A; animation: none; }
@keyframes wpulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .refining-grid, .mission-grid, .why-choose-grid, .refining-info-grid { grid-template-columns: 1fr; }
    .catalog-grid, .core-grid, .insights-grid, .process-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-main h1 { font-size: 32px; }
    .catalog-grid, .core-grid, .insights-grid, .process-grid, .services-grid, .stats-grid { grid-template-columns: 1fr; }
    .model-list ul { grid-template-columns: 1fr; }
    .tab-buttons { flex-wrap: wrap; }
    .hero-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-column ul { display: inline-block; }
}
.hero-section .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.hero-section .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
}

.hero-section .btn-secondary:hover {
    background: #fff;
    color: var(--primary);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: 48px; }
h2 { font-size: 40px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

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

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

.btn-outline-light {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

/* Header */
.header, #site-header, header.header, header#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-inner, #site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo img, #site-logo img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.logo-image {
    height: 45px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.nav, #site-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav ul, #site-navigation ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li, #site-navigation li {
    position: relative;
}

.nav a, #site-navigation a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

.nav a:hover, #site-navigation a:hover,
.nav .current-menu-item > a, #site-navigation .current-menu-item > a {
    color: var(--primary);
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid var(--border);
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    padding: 12px 20px;
    font-size: 14px;
}

.sub-menu a:hover {
    background: var(--background-alt);
    color: var(--primary);
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-toggle, .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap:5px;
    cursor: pointer;
    padding:10px;
}

.mobile-menu-toggle {
    /* ID-based for backward compatibility */
}

.mobile-toggle span, .mobile-menu-toggle i {
    width:25px;
    height:3px;
    background-color: var(--primary);
    transition: var(--transition);
}

.mobile-menu-toggle i {
    width: auto;
    height: auto;
    background: none;
    font-size: 24px;
    color: var(--primary);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo-1513828583688-c52646db42da.bin') center/cover;
    opacity: 0.15;
}

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

.hero-title {
    color: var(--background);
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

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

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons .btn {
    min-width: 180px;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--accent);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-text {
    color: var(--text-muted);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--background);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 10px;
}

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

.cta-section h2 {
    color: var(--background);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 18px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--background-alt);
    padding: 40px;
    border-radius: var(--radius);
}

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

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--background);
}

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

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

/* Map */
.map-container {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--background);
    padding: 60px 0 30px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-size: 14px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom span {
    color: var(--accent);
}

/* About Page Styles */
.page-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo-1473341304170-971dccb5ac1e.bin') center/cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    color: var(--background);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-content h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.mission-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.mission-list {
    margin-top: 25px;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.mission-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.team-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary);
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--background);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--accent);
}

.value-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 50%;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 4px solid var(--background);
}

.timeline-content {
    background: var(--background);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-left: 30px;
}

.timeline-year {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

/* Products Page */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

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

.product-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* Product Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    background: var(--background);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Compliance Page */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.compliance-card {
    background: var(--background);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.compliance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--accent);
}

.compliance-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.compliance-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Trust Badges */
.badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.badge-item {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 180px;
}

.badge-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.badge-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    color: var(--text-muted);
}

/* Logistics Page */
.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.logistics-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.logistics-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.logistics-info {
    padding: 25px;
}

.logistics-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.logistics-text {
    color: var(--text-muted);
    font-size: 14px;
}

.logistics-list {
    margin-top: 15px;
    padding-left: 20px;
}

.logistics-list li {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    list-style: disc;
}

/* Global Network */
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.network-card {
    text-align: center;
    padding: 30px;
    background: var(--background);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.network-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.network-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.network-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Sustainability Page */
.initiative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.initiative-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.initiative-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.initiative-content h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.initiative-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.initiative-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.initiative-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* HSE Standards */
.hse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hse-card {
    background: var(--background);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.hse-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}

.hse-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.hse-text {
    font-size: 14px;
    color: var(--text-muted);
}

/* Case Studies */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.case-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.case-info {
    padding: 25px;
}

.case-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.case-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.case-stat {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
}

/* Mini Hero */
.mini-hero {
    padding-top: 120px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

.mini-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo-1513828583688-c52646db42da.bin') center/cover;
    opacity: 0.08;
}

.mini-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.mini-hero h1 {
    color: var(--background);
    margin-bottom: 10px;
}

.mini-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    :root {
        --container: 1000px;
    }

    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }

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

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--background);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition);
    }

    .nav.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section {
        padding: 50px 0;
    }

    .timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --container: 100%;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }

    .logo-text {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 6px 18px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: wpulse 2.5s infinite;
}

@keyframes wpulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20BD5A;
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Base Animation System */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.animate-left {
    transform: translateX(-50px);
}
.animate-left.show {
    transform: translateX(0);
}

.animate-right {
    transform: translateX(50px);
}
.animate-right.show {
    transform: translateX(0);
}

.azoom {
    transform: scale(0.95);
}
.azoom.show {
    transform: scale(1);
}

.afade {
    transform: scale(0.9);
}
.afade.show {
    transform: scale(1);
}

/* Top Header Bar */
.top-header, #top-bar {
    background-color: var(--primary);
    color: var(--background);
    padding: 10px 0;
    font-size: 14px;
}

#top-bar {
    /* ID-based for backward compatibility */
}

.top-header-inner, #topbar-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topbar-info {
    display: flex;
    gap: 25px;
}

#topbar-info a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

#topbar-info a:hover {
    color: var(--accent);
}

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 4px;
    text-decoration: none;
}

.btn-sm:hover {
    background-color: var(--accent-dark);
}

/* Button with margin-top */
.btn-mt-15 {
    margin-top: 15px;
}

.btn-mt-20 {
    margin-top: 20px;
}

.btn-p-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* Section with centered text */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Text utilities */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

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

.color-accent {
    color: var(--accent);
}

/* Margin utilities */
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

/* Padding utilities */
.p-15 { padding: 15px; }
.p-20 { padding: 20px; }
.p-25 { padding: 25px; }
.p-30 { padding: 30px; }

/* Background utilities */
.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bg-primary-light {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.bg-gray {
    background: #f8f9fa;
}

.bg-white {
    background: var(--background);
}

/* Border utilities */
.radius-sm {
    border-radius: 4px;
}

.radius-md {
    border-radius: var(--radius);
}

.radius-lg {
    border-radius: 12px;
}

.radius-full {
    border-radius: 50%;
}

/* Width/Height utilities */
.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

/* Flex utilities */
.flex-item-center {
    display: flex;
    align-items: center;
}

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

/* Grid utilities */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

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

@media (max-width: 1024px) {
    .grid-3-cols,
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2-cols,
    .grid-3-cols,
    .grid-4-cols {
        grid-template-columns: 1fr;
    }
}

/* Progress/Stats circle */
.stat-circle {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.stat-circle i {
    color: var(--accent);
}

/* Card image with dynamic background */
.card-image-bg {
    margin: 0 auto;
}

.card-image-bg i {
    font-size: 48px;
    color: var(--primary);
}

/* Form utilities */
.form-group-custom {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

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

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

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 34, 68, 0.85) 100%);
    z-index:1;
}

/* Minimal Page Hero - replaces inline styles */
.hero-minimal {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.92), rgba(0, 34, 68, 0.95));
    padding:100px 0 60px;
}

.hero-minimal h1 {
    font-size:44px;
    color:#fff;
}

/* Logo with text - for minimal pages */
.logo-with-text {
    display: flex;
    align-items: center;
    gap:15px;
}

.logo-text-minimal {
    font-weight:700;
    font-size:18px;
    color: var(--primary);
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 0;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

/* About Preview */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border-radius: 4px;
}

.about-preview-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-preview-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.about-features {
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Service Link */
.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

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

/* Footer Social */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    padding: 8px 16px;
    background: #25D366;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.footer-social a:hover {
    background: #20BD5A;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-preview-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-header-inner {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .about-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .about-preview-image {
        order: -1;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Disclaimer */
.product-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    line-height: 1.5;
}

/* Quality Banner */
.quality-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
}

.quality-banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.quality-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.quality-text h3 {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 10px;
}

.quality-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quality-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quality-icon {
        font-size: 48px;
    }
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 0;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

/* Lubricants Section */
.lubricants-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.lubricants-intro p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
}

.lubricants-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.lubricant-card {
    background: var(--background);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.lubricant-card h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.lubricant-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.lubricants-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
border-top: 1px solid var(--border);
}

/* ========== STANDARDIZED COMPONENT CLASSES ========== */

/* Hero Section - Standard gradient */
#hero-section,
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
}

#hero-section h1,
.hero-section h1 {
    color: var(--background);
    font-size: 48px;
    margin-bottom: 15px;
}

#hero-section p,
.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
}

#hero-section .btn,
.hero-section .btn {
    margin-top: 20px;
}

/* Icon Container - Standard pattern for placeholder icons */
.icon-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.icon-container i {
    font-size: 80px;
    color: var(--accent);
}

.icon-container-sm {
    height: 200px;
}

.icon-container-sm i {
    font-size: 48px;
}

.icon-container-lg {
    height: 350px;
}

.icon-container-lg i {
    font-size: 100px;
}

/* Logo - Standard sizing */
.logo-img-standard {
    height: 50px;
    width: auto;
}

.logo-img-inverted {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Card with padding */
.card-padded {
    text-align: center;
    padding: 30px;
}

/* Grid gap utilities */
.grid-gap-15 {
    gap: 15px;
}

.grid-gap-20 {
    gap: 20px;
}

.grid-gap-25 {
    gap: 25px;
}

/* Flex utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

/* Info item with icon */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.info-item-whatsapp i {
    color: #25D366;
}

/* Section dark variant */
.section-dark {
    background-color: var(--background-alt);
}

.section-light {
    background-color: #f8f9fa;
}

/* Footer ID compatibility */
#colophon {
    background-color: var(--primary-dark);
    color: var(--background);
    padding: 60px 0 30px;
}

#colophon .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

#footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll top button */
.scroll-top-right, #scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.scroll-top-right:hover, #scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Business hours table */
.business-hours {
    max-width: 600px;
    margin: 0 auto;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid var(--border);
}

.business-hours-row:last-child {
    border-bottom: none;
}

/* Partners Section */
.partners-section {
    background: #fff;
    padding: 60px 0;
}

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

.partners-header h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.partners-header p {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo {
    background: var(--background);
    padding: 20px 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
}

@media (max-width: 768px) {
    .partner-logo {
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        gap: 25px;
    }
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lubricants-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 36px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
