:root {
    --primary-color: #ED6C27;
    --secondary-color: #000000;
    --accent-color: #0A2540;
    --light-bg: #F8F9FA;
    --dark-text: #1A1A1A;
    --medium-text: #4A4A4A;
    --light-text: #8A8A8A;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
    height: auto;
    position: relative;
    z-index: 1001;
}

.logo img {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 36px;
    position: relative;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
    position: relative;
    padding: 8px 0;
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #FF8C42);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active::after {
    color: var(--primary-color);
    width: 100%;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-contact {
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    border: 1.5px solid var(--primary-color);
}

.btn-contact:hover {
    background: transparent;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-text);
    z-index: 1001;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1A365D 100%);
    color: var(--white);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(26, 54, 93, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(237, 108, 39, 0.15);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #FF8C42);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(237, 108, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(237, 108, 39, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* About Preview Section */
.about-preview {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--dark-text), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-text {
    padding-right: 20px;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--medium-text);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.floating-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(237, 108, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.floating-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.floating-card p {
    color: var(--medium-text);
}

/* About Page Specific Styles */
.about-section {
    background-color: var(--white);
}

.leadership-section {
    background-color: var(--light-bg);
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.quote-text p {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-style: italic;
}

.leader-info {
    margin-top: 40px;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.leader-title {
    color: var(--medium-text);
}

.mission-vision-section {
    background-color: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.mission-card .card-icon, .vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(237, 108, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-card .card-icon i, .vision-card .card-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.mission-card h3, .vision-card h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.mission-card p, .vision-card p {
    color: var(--medium-text);
    line-height: 1.7;
}

.values-section {
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 108, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.value-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.value-card p {
    color: var(--medium-text);
}

.stats-section {
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Divisions Section */
.divisions {
    background-color: var(--light-bg);
    position: relative;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.division-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.division-image {
    height: 240px;
    overflow: hidden;
}

.division-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.division-card:hover .division-image img {
    transform: scale(1.05);
}

.division-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.division-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.division-content p {
    color: var(--medium-text);
    margin-bottom: 24px;
    flex-grow: 1;
}

.division-details {
    margin-top: 20px;
}

.division-details h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.division-details ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.division-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--medium-text);
}

.division-details ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.division-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    margin-top: auto;
}

.division-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.division-link:hover i {
    transform: translateX(5px);
}

/* Zimbabwe-China Section */
.zimbabwe-china {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1A365D 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.zimbabwe-china::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1547981609-4b6bf67b7d12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.white-text {
    color: var(--white) !important;
}

.strategic-bridge {
    margin-bottom: 60px;
}

.highlight-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 60px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.highlight-box h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.highlight-box p {
    font-size: 1.125rem;
    margin-bottom: 20px;
    opacity: 0.9;
    color: var(--white);
}

.partnership-offerings {
    margin: 30px 0;
}

.partnership-offerings h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--white);
}

.partnership-offerings ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.partnership-offerings ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.partnership-offerings ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.partnership-role {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-role h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--white);
}

.partnership-role p {
    color: rgba(255, 255, 255, 0.9);
}

.partnership-visual {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.partnership-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.partnership-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.partnership-image:hover img {
    transform: scale(1.02);
}

.partnership-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(237, 108, 39, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--white);
}

.feature-text p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
    color: var(--white);
}

/* Competitive Edge Section */
.competitive-edge {
    background-color: var(--light-bg);
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.edge-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.edge-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.edge-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 108, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.edge-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.edge-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.edge-card p {
    color: var(--medium-text);
}

.edge-summary {
    text-align: center;
}

.summary-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Locations Page Styles */
.locations-section {
    background-color: var(--white);
}

.location-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.location-details > div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.location-details i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 16px;
    margin-top: 4px;
}

.location-details h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--accent-color);
}

.location-details p {
    color: var(--medium-text);
    margin-bottom: 4px;
}

.location-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-text);
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.map-placeholder span {
    font-size: 14px;
}

.warehouses-section {
    background-color: var(--light-bg);
}

.warehouses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.warehouse-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.warehouse-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.warehouse-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 108, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.warehouse-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.warehouse-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.warehouse-card p {
    color: var(--medium-text);
    margin-bottom: 20px;
}

.warehouse-details p {
    font-size: 14px;
    margin-bottom: 8px;
}

.coverage-section {
    background-color: var(--white);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-visual {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.zimbabwe-outline {
    width: 80%;
    height: 80%;
    background: #e6f2ff;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    position: relative;
}

.location-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-marker i {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.location-marker span {
    background: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.harare {
    top: 30%;
    left: 60%;
}

.gweru {
    top: 50%;
    left: 40%;
}

.coverage-info h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.coverage-info p {
    color: var(--medium-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coverage-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.coverage-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.coverage-stat .stat-label {
    font-size: 12px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Styles */
.contact-info-section {
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(237, 108, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.contact-info-card p {
    color: var(--medium-text);
    margin-bottom: 8px;
}

.contact-form-section {
    background-color: var(--light-bg);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.contact-form > p {
    color: var(--medium-text);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 108, 39, 0.1);
}

.contact-map {
    display: flex;
    flex-direction: column;
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.location-details h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.location-details p {
    color: var(--medium-text);
    margin-bottom: 24px;
}

.location-features {
    display: flex;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature i {
    color: var(--primary-color);
}

.feature span {
    font-size: 14px;
    color: var(--medium-text);
}

.faq-section {
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(237, 108, 39, 0.05);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: var(--medium-text);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C42 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: var(--white);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px 0 60px;
}

.footer-about p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
}

.footer-contact p i {
    margin-right: 12px;
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Utility Classes */
.bg-light {
    background-color: var(--light-bg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-features {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-box {
        padding: 40px;
    }
    
    .location-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .coverage-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 0 0 30px 0;
    }
    
    nav ul li a {
        font-size: 18px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .highlight-box h3 {
        font-size: 1.75rem;
    }
    
    .cta h2 {
        font-size: 2.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .highlight-box {
        padding: 30px 20px;
    }
    
    .page-header-content h1 {
        font-size: 2.25rem;
    }
    
    .page-header-content p {
        font-size: 1.125rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    
    .location-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .cta h2 {
        font-size: 1.875rem;
    }
    
    .floating-card {
        padding: 30px 20px;
    }
    
    .division-content {
        padding: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .partnership-features {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
    }
    
    .value-card, .edge-card, .warehouse-card, .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form h2 {
        font-size: 1.75rem;
    }
}