/*
Theme Name: AMHBM Building Materials
Theme URI: https://amhbm.com
Author: AMHBM Team
Author URI: https://amhbm.com
Description: A modern, bilingual WordPress theme for Amal Mohammed Harthi Building Materials Establishment. Features RTL support, animations, and product catalog functionality.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amhbm
Tags: business, industrial, bilingual, rtl, e-commerce-ready, custom-post-types, translation-ready

AMHBM Building Materials theme is a professional WordPress theme designed for building materials companies.
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* Root Variables - Green and Gold Light Color Scheme */
:root {
    --color-primary: #7fb069;
    --color-primary-dark: #5a8a4a;
    --color-primary-light: #e8f5e3;
    --color-accent: #d4af37;
    --color-accent-light: #f4d03f;
    --color-accent-dark: #b8941f;
    --color-teal: #7fb069;
    --color-teal-dark: #5a8a4a;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b8941f;
    --color-dark: #2d5016;
    --color-light: #f0f8ed;
    --color-gray: #c8d9c0;
    --color-white: #ffffff;
    --color-text: #2d5016;
    --color-text-light: #5a8a4a;
    
    --font-sans: 'Inter', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', 'Noto Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --spacing-xs: 12px;
    --spacing-sm: 20px;
    --spacing-md: 32px;
    --spacing-lg: 48px;
    --spacing-xl: 64px;
    --spacing-2xl: 96px;
    --spacing-3xl: 128px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-base: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    font-size: 1rem;
    overflow-x: hidden;
    padding-top: 0;
}

.site {
    padding-top: 0;
}

#page.site {
    padding-top: 0;
    margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 0;
}

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

.rtl {
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-2xl);
    }
}

/* Header Styles - Based on React Navigation */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    background-color: #ffffff !important; /* White background as requested */
    backdrop-filter: none;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin: 0;
}

.header.scrolled {
    background-color: var(--color-white) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed !important;
    top: 0 !important;
}

.header .container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Ensure nav stays in header-top row on all screen sizes - STABLE POSITION */
.header-top .nav {
    display: flex !important;
    order: 2;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
    direction: ltr !important;
    text-align: left !important;
}

.header-top .logo {
    order: 1;
    flex-shrink: 0;
}

.header-top .header-actions {
    order: 3;
    flex-shrink: 0;
}

/* Ensure nav stays stable when toggling languages */
body.lang-ar .header-top .nav,
body.rtl .header-top .nav,
.header-top .nav {
    direction: ltr !important;
    text-align: left !important;
    justify-content: center !important;
    align-items: center !important;
}

.header-top .nav ul {
    direction: ltr !important;
    justify-content: center !important;
    align-items: center !important;
}

.header-top .nav ul li {
    float: none !important;
    direction: ltr !important;
}

.header-top .nav ul li a {
    text-transform: uppercase !important;
    direction: ltr !important;
    text-align: left !important;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-shrink: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.header.scrolled .logo-image {
    height: 40px;
}

.logo h2,
.logo-text {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary); /* Green for white background */
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0;
}

.header.scrolled .logo h2,
.header.scrolled .logo-text {
    color: var(--color-primary);
    font-size: 22px;
}

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

.logo-link:hover h2,
.logo-link:hover .logo-text {
    color: var(--color-gold);
}

.nav {
    margin-top: 0;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav ul li {
    margin-left: 0;
    margin-right: 30px;
}

.nav ul li:first-child {
    margin-left: 0;
}

.nav ul li:last-child {
    margin-right: 0;
}

.nav ul li a {
    text-decoration: none;
    color: var(--color-text); /* Standard text color for white background */
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase !important;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    display: block;
    opacity: 1;
}

.nav ul li a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.header.scrolled .nav ul li a {
    color: var(--color-primary); /* Green after scroll */
}

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

.nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav ul li a:hover::after {
    width: 100%;
}

.nav ul li a.active {
    color: var(--color-primary);
}

.nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin: -10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    position: relative;
    background: none;
    border: none;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary); /* Green for white background */
    margin: 3px 0;
    transition: 0.3s;
    pointer-events: none;
}

.header.scrolled .mobile-menu-button span {
    background-color: var(--color-text);
}

.mobile-menu-button.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-button.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.language-switcher a.active,
.language-switcher a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* Language Toggle Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.language-toggle-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.language-toggle {
    position: relative;
    width: 70px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.05); /* Darker for first view */
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.header.scrolled .language-toggle {
    background-color: var(--color-light);
    border-color: var(--color-primary);
}

.language-toggle:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .language-toggle:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
}

.language-toggle .lang-label {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text); /* Standard text color for white background */
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.language-toggle .lang-label[data-lang="en"] {
    left: 10px;
}

.language-toggle .lang-label[data-lang="ar"] {
    right: 10px;
}

.header.scrolled .language-toggle .lang-label {
    color: var(--color-text);
}

.language-toggle .toggle-slider {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: var(--color-primary); /* Green for white background */
    border-radius: 50%;
    left: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.language-toggle.active .toggle-slider {
    transform: translateX(34px);
}

.language-toggle.active .lang-label[data-lang="en"] {
    opacity: 0.5;
}

.language-toggle:not(.active) .lang-label[data-lang="ar"] {
    opacity: 0.5;
}

.header.scrolled .language-toggle .toggle-slider {
    background-color: var(--color-primary);
}

/* Text Justify Alignment */
p, h1, h2, h3, h4, h5, h6,
.section-subtitle, .hero-subtitle, .hero-description,
.service-card p, .product-info p, .about-content p,
.mission-text p, .vision-point p, .company-text p,
.mission-item p, .stat-item p, .industry-item p,
.service-item-card p, .benefit-item p, .cta-content p,
.benefit-card p, .position-item p, .career-contact-content p,
.faq-answer p, .contact-detail-item p, .category-info p,
.slide-info p, .application-card p, .hero-contents p,
.contact-hero-content p, .services-hero-content p,
.career-hero-content p, .faq-hero-content p,
.products-hero-content p, .faq-cta-content p,
.contact-title, .contact-description, .section-title,
.service-item-card h3, .benefit-item h4, .contact-detail-item h4 {
    text-align: justify;
    text-justify: inter-word;
}

/* RTL Support - DISABLED: Keep all text left-aligned like English */
/* All content stays in same position, no text alignment changes */
body.lang-ar p,
body.lang-ar .section-subtitle,
body.lang-ar .hero-subtitle,
body.lang-ar .hero-description,
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4,
body.lang-ar h5,
body.lang-ar h6,
body.lang-ar .section-title,
body.lang-ar .contact-title,
body.lang-ar .contact-description,
body.lang-ar .service-item-card p,
body.lang-ar .benefit-item p,
body.lang-ar .cta-content p,
body.lang-ar .benefit-card p,
body.lang-ar .position-item p,
body.lang-ar .career-contact-content p,
body.lang-ar .faq-answer p,
body.lang-ar .contact-detail-item p,
body.lang-ar .category-info p,
body.lang-ar .slide-info p,
body.lang-ar .application-card p,
body.lang-ar .hero-contents p,
body.lang-ar .company-text p,
body.lang-ar .mission-text p,
body.lang-ar .vision-point p,
body.lang-ar .mission-item p,
body.lang-ar .stat-item p,
body.lang-ar .industry-item p,
body.lang-ar .footer-description,
body.lang-ar .footer-heading,
body.lang-ar .footer-links a,
body.lang-ar .footer-copyright,
body.lang-ar .footer-legal a,
body.lang-ar .footer-links li,
body.lang-ar .footer-section,
body.lang-ar .footer-section p,
body.lang-ar .footer-section h3,
body.lang-ar .footer-section h4,
body.lang-ar .footer-section ul,
body.lang-ar .footer-section li {
    text-align: left !important;
    direction: ltr !important;
}

/* Keep header, navigation, footer, and layout elements in LTR always - FIXED LAYOUT */
/* ALL CONTENT STAYS LEFT-ALIGNED LIKE ENGLISH - NO POSITION CHANGES */
html,
html[dir],
body,
body.rtl,
body.lang-ar,
body.lang-en,
.header,
.header-top,
.header-actions,
.nav,
.nav ul,
.nav li,
.hero-cta,
.cta-button,
.container,
.containers,
.hero-container,
.hero-content,
.services-grid,
.benefits-grid,
.category-grid,
.product-grid,
.footer-wrapper,
.footer-container,
.footer-main,
.footer-section,
.footer-links,
.footer-bottom,
.footer-bottom-content,
.footer-legal,
.site-main,
.services-page,
.services-overview,
.services-intro,
.service-item-card,
.service-benefits,
.benefit-item,
.services-gallery,
.gallery-grid,
.gallery-item,
.services-cta,
.cta-content,
.footer-brand,
.footer-description,
.footer-heading,
.footer-links li,
.footer-links a,
.footer-copyright,
.footer-legal a,
.footer-legal span,
.footer-about,
.footer-section h3,
.footer-section h4,
.footer-section p,
.footer-section div,
.footer-section ul,
.footer-section li,
.contact-icon,
.footer-section svg {
    direction: ltr !important;
    text-align: left !important;
}

/* Keep flexbox containers LTR */
.header .container,
.header-top,
.header-actions,
.logo,
.logo-link {
    direction: ltr !important;
    justify-content: flex-start !important;
}

/* Prevent any float right on layout elements */
.header-top,
.header-actions,
.nav ul,
.nav li,
.services-grid,
.benefits-grid,
.category-grid,
.product-grid,
.gallery-grid {
    float: none !important;
}

/* Ensure all grid and flex containers maintain left alignment */
.services-grid,
.benefits-grid,
.category-grid,
.product-grid,
.gallery-grid,
.contact-content,
.vision-mission-grid,
.mission-content,
.stats-grid {
    direction: ltr !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

/* Keep logo and header elements on the left */
.logo {
    float: left !important;
    margin-right: auto !important;
}

.header-actions {
    float: right !important;
    margin-left: auto !important;
}

/* GLOBAL RULE: Force all text content to stay left-aligned like English - NO POSITION CHANGES */
/* This ensures Arabic content stays in same position as English on all pages */
body.lang-ar p,
body.lang-ar span:not(.lang-label):not(.toggle-slider),
body.lang-ar div:not(.language-toggle-wrapper):not(.language-toggle),
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4,
body.lang-ar h5,
body.lang-ar h6,
body.lang-ar a,
body.lang-ar li,
body.lang-ar ul,
body.lang-ar ol,
body.lang-ar td,
body.lang-ar th,
body.lang-ar table,
body.lang-ar label,
body.lang-ar input,
body.lang-ar textarea,
body.lang-ar select,
body.lang-ar button:not(.language-toggle),
body.lang-ar .container,
body.lang-ar .containers,
body.lang-ar .section-title,
body.lang-ar .footer-section,
body.lang-ar .footer-links,
body.lang-ar .footer-description,
body.lang-ar .footer-heading,
body.lang-ar .footer-copyright,
body.lang-ar .footer-legal,
body.lang-ar .hero-contents,
body.lang-ar .service-item-card,
body.lang-ar .benefit-item,
body.lang-ar .cta-content,
body.lang-ar .contact-info,
body.lang-ar .contact-detail-item {
    text-align: left !important;
    direction: ltr !important;
}

@media (max-width: 768px) {
    .header-actions {
        gap: 15px;
    }
    
    .language-toggle {
        width: 65px;
        height: 32px;
    }
    
    .language-toggle .toggle-slider {
        width: 24px;
        height: 24px;
    }
    
    .language-toggle.active .toggle-slider {
        transform: translateX(33px);
    }
    
    .language-toggle .lang-label {
        font-size: 11px;
    }
    
    .language-toggle .lang-label[data-lang="en"] {
        left: 8px;
    }
    
    .language-toggle .lang-label[data-lang="ar"] {
        right: 8px;
    }
}

/* Hero Section - Enhanced */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 120px 0 80px 0;
    padding-top: 140px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 0 !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-content p,
.hero-content .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(127, 176, 105, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--color-primary-light);
}

/* Content Sections */
.content-section {
    padding: 100px 0;
}

.content-section.bg-light {
    background-color: var(--color-primary-light);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.section-title + p {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

/* Services Grid - Miracle Studio Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card .service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card .service-link:hover {
    gap: 1rem;
}

.service-card .service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card .service-link:hover::after {
    transform: translateX(4px);
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-info h3 a:hover {
    color: var(--color-primary);
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

/* Utility Classes */
.bg-light {
    background-color: var(--color-primary-light);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .service-item-card {
        padding: 32px 24px;
    }
    
    .service-item-card h3 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .benefit-item {
        padding: 32px 24px;
    }
    
    .services-intro .section-title {
        font-size: 2rem;
    }
    
    .services-intro .section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-benefits .section-title {
        font-size: 2rem;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-overview {
        padding: 60px 20px;
    }
    
    .services-intro {
        margin-bottom: 40px;
        padding: 0;
    }
    
    .services-intro .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .services-intro .section-subtitle {
        font-size: 1rem;
    }
    
    .featured-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
        padding: 0;
    }
    
    .featured-service-card {
        padding: 32px 24px;
    }
    
    .featured-service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }
    
    .featured-service-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .featured-service-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }
    
    .service-item-card {
        padding: 32px 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-item-card h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    
    .service-item-card p {
        font-size: 0.95rem;
    }
    
    .service-benefits {
        padding: 60px 20px;
    }
    
    .service-benefits .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0;
    }
    
    .benefit-item {
        padding: 32px 24px;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .services-gallery {
        padding: 60px 20px;
    }
    
    .services-gallery .container {
        padding: 0;
    }
    
    .services-gallery .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .services-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .services-cta {
        padding: 60px 20px;
    }
    
    .services-cta .cta-content {
        padding: 0;
    }
    
    .services-cta .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .services-cta .cta-content p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .services-cta .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 1rem 0;
    }
}

/* ============================================
   HERO SECTION - Based on React Hero.jsx
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 60px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 25%, #7fb069 50%, var(--color-primary) 75%, var(--color-primary-dark) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.hero-loading-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 25%, #7fb069 50%, var(--color-primary) 75%, var(--color-primary-dark) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.4) 0%, rgba(127, 176, 105, 0.3) 50%, rgba(212, 175, 55, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    text-align: center;
}

.hero-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--color-gold);
    display: block;
    font-style: italic;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 2px 2px 8px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: var(--font-sans);
    font-size: clamp(14px, 1.5vw, 18px);
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 36px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.cta-button.primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

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

.cta-button.secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--color-gold));
    animation: scroll-down 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes scroll-down {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   PROJECT SHOWCASE - Based on React ProjectShowcase.jsx
   ============================================ */
.project-showcase-section {
    padding: 156px 60px;
    background: var(--color-white);
    overflow: hidden;
}

.showcase-container {
    max-width: 1440px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 100px;
    padding: 0 64px;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.showcase-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 64px;
    margin-bottom: 80px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.project-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary-light);
}

.project-image-container:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(62, 54, 46, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.project-image-container:hover .project-overlay {
    opacity: 1;
}

.view-project {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-white);
    font-weight: 500;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-category {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

.project-location {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-primary-dark);
    font-weight: 400;
}

.project-description {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.6;
    opacity: 0.8;
}

.showcase-cta {
    text-align: center;
    padding-top: 60px;
}

.view-all-button {
    padding: 20px 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(127, 176, 105, 0.3);
    text-decoration: none;
}

.view-all-button:hover {
    background: #9d7b5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 176, 105, 0.4);
}

/* ============================================
   MISSION & VISION - Based on React Mission.jsx
   ============================================ */
.mission-vision {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    background-image: none !important;
}

.mission-vision-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 120px;
    padding: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(127, 176, 105, 0.2);
}

.mission-icon-wrapper {
    flex-shrink: 0;
}

.mission-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.3);
}

.mission-icon {
    width: 60px;
    height: 60px;
    color: var(--color-white);
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text p {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.vision-section {
    margin-bottom: 0;
}

.vision-text h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.vision-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    border-radius: 2px;
}

.vision-intro {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vision-point {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(127, 176, 105, 0.2);
}

.vision-point:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 176, 105, 0.2);
}

.vision-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.3);
}

.vision-icon {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.vision-point h3 {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 700;
}

.vision-point p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   BRANDS CAROUSEL - Auto-scrolling brands section
   ============================================ */
.brands-carousel-section {
    padding: 100px 0;
    background: var(--color-white);
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.brands-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 0;
}

/* Background Carousel */
.brands-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    animation: brands-bg-scroll 50s linear infinite;
    will-change: transform;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.brands-background-carousel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: -1;
}

.brands-bg-item {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brands-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    filter: blur(2px) saturate(1.2) brightness(1.1);
    opacity: 0.4;
    transform: scale(1.1);
    display: block !important;
    visibility: visible !important;
}

@keyframes brands-bg-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Ensure background carousel is visible and working */
.brands-background-carousel img {
    display: block !important;
    visibility: visible !important;
    opacity: 0.4 !important;
    filter: saturate(1.2) brightness(1.1) !important;
}

/* Content Overlay */
.brands-content-overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.brands-header {
    text-align: center;
    margin-bottom: 60px;
}

.brands-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brands-subtitle {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.brands-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.brands-carousel-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: brands-scroll 30s linear infinite;
    will-change: transform;
}

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

.brand-item {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.1) brightness(1.05);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: saturate(1.3) brightness(1.15);
    opacity: 1;
    transform: scale(1.05);
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

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

/* Responsive Brands Carousel */
@media (max-width: 1024px) {
    .brands-title {
        font-size: 2.5rem;
    }
    
    .brands-subtitle {
        font-size: 1.2rem;
    }
    
    .brand-item {
        width: 160px;
        height: 100px;
    }
    
    .brands-carousel-track {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .brands-carousel-section {
        padding: 60px 0;
    }
    
    .brands-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .brands-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .brand-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    .brands-carousel-track {
        gap: 30px;
        animation-duration: 25s;
    }
}

/* ============================================
   PRODUCT CAROUSEL - Based on React ProductCarousel.jsx
   ============================================ */
.product-carousel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
    overflow: hidden;
}

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

.carousel-header {
    text-align: center;
    margin-bottom: 60px;
}

.carousel-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.carousel-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.carousel-product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.carousel-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

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

.carousel-product-card:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-product-info {
    padding: 30px;
}

.carousel-product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
}

.carousel-product-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   PARALLAX GALLERY / SERVICES - Based on React ParallaxGallery.jsx
   ============================================ */
.parallax-gallery-section {
    padding: 100px 40px;
    background: var(--color-gray);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gallery-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-primary);
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large {
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(62, 54, 46, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(127, 176, 105, 0.4);
}

.service-item .service-title {
    margin-top: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-dark);
    text-align: center;
    font-weight: 600;
}

/* ============================================
   ABOUT PAGE - Based on React About.jsx
   ============================================ */
.about-page {
    width: 100%;
}

.about-hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

.about-hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-text-light);
    max-width: 600px;
}

.company {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.company-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-text);
}

.company-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.company-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.company-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.mission {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-text);
    font-weight: 700;
}

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

.mission-item {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

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

.vision-details {
    padding: 100px 0;
    background: var(--color-white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card,
.mission-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vision-card h2,
.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--color-primary-light);
    border-radius: 8px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.industries {
    padding: 100px 0;
    background: var(--color-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.industry-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

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

/* ============================================
   FOOTER - Based on React Footer.jsx
   ============================================ */
.footer-wrapper {
    background: linear-gradient(135deg, #7b6b24 0%, #b49540 25%, #9c8950 50%, #e7cd7c 75%, #b49540 100%);
    color: #000000;
    padding: 0;
    margin-top: 0;
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #1abc9c;
}

.footer-wrapper::before {
    display: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 0;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding: 0 0 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    align-items: start;
}

.footer-section {
    margin-bottom: 0;
    color: #000000;
}

.footer-about {
    padding-right: 2rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #000000;
    text-align: left !important;
    direction: ltr !important;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    color: #000000;
    position: relative;
    padding-bottom: 8px;
    text-align: left !important;
    direction: ltr !important;
}

.footer-heading::after {
    display: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
    direction: ltr !important;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left !important;
    direction: ltr !important;
}

.footer-links a:hover {
    color: #000000;
    opacity: 0.8;
    transform: translateX(5px);
}

.contact-icon {
    min-width: 20px;
    margin-top: 0.2rem;
    color: #000000;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #000000;
    text-align: left !important;
    direction: ltr !important;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: left !important;
    direction: ltr !important;
}

.footer-legal a:hover {
    color: #000000;
    opacity: 0.8;
}

.divider {
    color: #000000;
    opacity: 0.6;
    user-select: none;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .header-top .nav {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .nav ul li {
        margin-right: 20px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 48px;
    }
    
    .featured-services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 50px;
    }
    
    .featured-service-card {
        padding: 40px 32px;
        min-height: auto;
    }
    
    .featured-service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .featured-service-card p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .featured-service-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }
    
    .services-intro .section-title {
        font-size: 2.5rem;
    }
    
    .service-benefits .section-title {
        font-size: 2.4rem;
    }
    
    .mission-section {
        padding: 50px 40px;
        gap: 40px;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
    }
    
    .company-content {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header-top .nav {
        display: none !important;
    }
    
    .header .nav {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 999 !important;
        pointer-events: none;
    }
    
    .header .nav.open {
        left: 0 !important;
        pointer-events: auto !important;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav ul li a {
        font-size: 1.5rem;
        padding: 15px 20px;
        color: var(--color-text);
        display: block;
        width: 100%;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .hero-section {
        padding: 0 20px;
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 0;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .project-showcase-section {
        padding: 80px 24px;
    }
    
    .project-showcase-section {
        padding: 60px 20px;
    }
    
    .showcase-container {
        padding: 0;
    }
    
    .showcase-header {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .showcase-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .project-card {
        border-radius: 16px;
    }
    
    .project-info {
        padding: 24px;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .showcase-cta {
        padding-top: 40px;
    }
    
    .view-all-button {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .mission-vision {
        padding: 60px 20px;
    }
    
    .mission-vision-content {
        padding: 0;
    }
    
    .mission-section {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-radius: 16px;
    }
    
    .mission-icon-wrapper {
        margin-bottom: 0;
    }
    
    .mission-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .mission-icon {
        width: 40px;
        height: 40px;
    }
    
    .mission-text h2,
    .vision-text h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .mission-text p {
        font-size: 0.95rem;
    }
    
    .vision-section {
        margin-top: 40px;
    }
    
    .vision-intro {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vision-point {
        padding: 20px;
    }
    
    .vision-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .vision-icon {
        width: 24px;
        height: 24px;
    }
    
    .vision-point h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .vision-point p {
        font-size: 0.9rem;
    }
    
    .product-carousel-section {
        padding: 60px 20px;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .carousel-header {
        margin-bottom: 40px;
    }
    
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
    
    .products-carousel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-product-card {
        border-radius: 16px;
    }
    
    .carousel-product-info {
        padding: 24px;
    }
    
    .carousel-product-info h3 {
        font-size: 1.3rem;
    }
    
    .parallax-gallery-section {
        padding: 60px 20px;
    }
    
    .gallery-header {
        margin-bottom: 50px;
    }
    
    .gallery-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .gallery-item {
        border-radius: 12px;
    }
    
    .home-image-gallery {
        padding: 60px 20px;
    }
    
    .home-image-gallery .container {
        padding: 0;
    }
    
    .home-image-gallery .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .home-image-gallery .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .brands-carousel-section {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .brands-content-overlay {
        padding: 40px 0;
    }
    
    .brands-container {
        padding: 0 20px;
    }
    
    .brands-header {
        margin-bottom: 40px;
    }
    
    .brands-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .brands-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .brands-carousel-section {
        min-height: 350px;
    }
    
    .brands-content-overlay {
        min-height: 350px;
        padding: 30px 0;
    }
    
    .brands-bg-item {
        width: 180px;
        height: 180px;
    }
    
    .brands-bg-image {
        filter: blur(2px) saturate(1.2) brightness(1.1);
        opacity: 0.4;
    }
    
    .brand-item {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
    
    .brands-carousel-track {
        gap: 30px;
        animation-duration: 25s;
    }
    
    .brands-background-carousel {
        gap: 25px;
        animation-duration: 40s;
    }
    
    .about-hero,
    .career-hero,
    .faq-hero {
        height: 30vh;
        min-height: 200px;
        padding: 0 20px;
    }
    
    .about-hero-content h1,
    .career-hero-content h1,
    .faq-hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .about-hero-content p,
    .career-hero-content p,
    .faq-hero-content p {
        font-size: 0.95rem;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    
    .company-image {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .company-text h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .company-text p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    
    .career-page,
    .faq-page {
        padding: 0;
    }
    
    .career-content,
    .faq-content {
        padding: 40px 20px;
    }
    
    .career-section,
    .faq-section {
        margin-bottom: 40px;
    }
    
    .career-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .faq-item {
        margin-bottom: 16px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
        font-size: 0.95rem;
    }
    
    .page-products,
    .archive-products {
        padding: 0;
    }
    
    .products-hero {
        padding: 40px 20px;
    }
    
    .products-hero h1 {
        font-size: 1.8rem;
    }
    
    .products-filter {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .footer-wrapper {
        padding: 0;
        margin-top: 0;
    }
    
    .footer-container {
        padding: 2.5rem 1.25rem 0;
        max-width: 100%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0 2rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    
    .footer-section {
        margin-bottom: 0;
        padding: 0;
        width: 100%;
    }
    
    .footer-about {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-brand {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-description {
        font-size: 0.875rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    
    .footer-links {
        margin-bottom: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
        width: 100%;
    }
    
    .footer-links li:last-child {
        margin-bottom: 0;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        display: inline-block;
        padding: 0.25rem 0;
        text-align: center;
        width: 100%;
    }
    
    .footer-links li[style*="display:flex"] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .footer-links li[style*="display:flex"] .contact-icon {
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .footer-links li[style*="display:flex"] div {
        text-align: center;
        width: 100%;
    }
    
    .footer-links li[style*="display:flex"] p {
        text-align: center;
        margin: 0;
        width: 100%;
    }
    
    .footer-links li[style*="display:flex"] a {
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom {
        padding: 1.5rem 1.25rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 0;
        align-items: center;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        text-align: center !important;
        margin: 0;
        line-height: 1.5;
        width: 100%;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        width: 100%;
        align-items: center;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
        display: inline-block;
        text-align: center;
    }
    
    .footer-legal .divider {
        display: none;
    }
    
    .contact-icon {
        min-width: 18px;
        width: 18px;
        height: 18px;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }
    
    .footer-section .footer-links li[style*="display:flex"] {
        justify-content: center;
        align-items: center;
    }
    
    /* Override inline styles for mobile */
    .footer-links li[style*="display:flex"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .footer-links li[style*="display:flex"]:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-links li[style*="display:flex"] svg {
        margin: 0 auto !important;
    }
    
    .footer-links li[style*="display:flex"] div {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-links li[style*="display:flex"] p {
        text-align: center !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .footer-links li[style*="display:flex"] a {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 48px);
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .showcase-title {
        font-size: clamp(32px, 8vw, 48px);
    }
    
    .mission-text h2,
    .vision-text h2 {
        font-size: 1.8rem;
    }
    
    .vision-point {
        padding: 28px;
    }
}

/* ============================================
   SERVICES PAGE - Based on Southern Pipes Design
   ============================================ */
.services-page {
    width: 100%;
}

.services-hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.services-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.services-hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.services-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
}

.services-overview {
    padding: 100px 0;
    background: var(--color-white);
}

.services-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.services-intro .section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Featured Services Grid - Two Large Cards */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.featured-service-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.featured-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.featured-service-card:hover::before {
    transform: scaleX(1);
}

.featured-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(127, 176, 105, 0.25);
    border-color: var(--color-primary-light);
}

.featured-service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-service-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 32px;
    flex-grow: 1;
}

.featured-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(127, 176, 105, 0.3);
    align-self: flex-start;
    margin-top: auto;
}

.featured-service-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(127, 176, 105, 0.4);
    color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item-card:hover::before {
    transform: scaleX(1);
}

.service-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(127, 176, 105, 0.25);
    border-color: var(--color-primary-light);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(127, 176, 105, 0.35);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-item-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(127, 176, 105, 0.45);
}

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-item-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text);
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
    flex-grow: 0;
}

.service-item-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
}

.service-link-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 176, 105, 0.3);
}

.service-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.service-benefits .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(127, 176, 105, 0.2);
    border-color: var(--color-primary-light);
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.services-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.services-cta .container {
    position: relative;
    z-index: 1;
}

.services-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-cta .cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.services-cta .cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

.services-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.services-cta .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: var(--color-primary-light);
}

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

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
    margin-bottom: 30px;
}

/* ============================================
   CAREER PAGE - Based on Southern Pipes Design
   ============================================ */
.career-page {
    width: 100%;
}

.career-hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.career-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.career-hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.career-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.career-hero-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
}

.career-intro {
    padding: 100px 0;
    background: var(--color-white);
}

.career-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.why-work-with-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.benefit-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127, 176, 105, 0.1);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 176, 105, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.3);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.open-positions {
    padding: 100px 0;
    background: var(--color-white);
}

.positions-list {
    max-width: 800px;
    margin: 0 auto;
}

.position-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.position-item h3 {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.position-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-email {
    font-size: 1.2rem;
    margin-top: 20px;
}

.contact-email a {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    color: var(--color-primary);
}

.career-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.career-contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.career-contact-content h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.career-contact-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

.contact-info a:hover {
    color: var(--color-primary);
}

/* ============================================
   FAQ PAGE - Based on Southern Pipes Design
   ============================================ */
.faq-page {
    width: 100%;
}

.faq-hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.faq-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.faq-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.faq-hero-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
}

.faq-section {
    padding: 100px 0;
    background: var(--color-white);
}

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

.faq-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(127, 176, 105, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(127, 176, 105, 0.15);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(127, 176, 105, 0.05);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--color-text);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 24px;
}

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

.faq-answer ul {
    margin: 15px 0;
    padding-left: 30px;
}

.faq-answer li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    text-align: center;
}

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

.faq-cta-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Responsive styles for new pages */
@media (max-width: 768px) {
    .services-hero,
    .career-hero,
    .faq-hero {
        height: 30vh;
    }
    
    .services-hero-content h1,
    .career-hero-content h1,
    .faq-hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ============================================
   CONTACT PAGE - Based on Southern Pipes Design
   ============================================ */
.contact-page {
    width: 100%;
}

/* Unified Hero Section Styles - Used across all pages */
.heros {
    height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(127, 176, 105, 0.2);
}

.heros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(127, 176, 105, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.containers {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-contents {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    z-index: 1;
    text-align: center;
}

.hero-contents h1 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.hero-contents p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-text-light);
    max-width: 600px;
}

/* Legacy contact-hero styles (kept for backward compatibility) */
.contact-hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-gold) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
}

.contact-section {
    padding: 100px 60px 80px 60px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
    position: relative;
    margin: 0;
}

.contact-container {
    max-width: 1320px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    margin-top: 0;
    padding: 48px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #cbd5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact-description {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-primary-dark);
    line-height: 1.6;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #cbd5e0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: #95a5a6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    flex-shrink: 0;
    border: 1px solid #cbd5e0;
}

.contact-detail-item h4 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-detail-item p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.contact-detail-item a:hover {
    color: var(--color-primary);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #cbd5e0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-text);
    background: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #95a5a6;
}

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

.submit-button {
    padding: 18px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(127, 176, 105, 0.3);
    text-decoration: none;
}

.submit-button:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 8px 20px rgba(127, 176, 105, 0.4);
    transform: translateY(-2px);
}

.contact-gallery {
    padding: 100px 0;
    background: var(--color-white);
}

/* ============================================
   PRODUCTS PAGE - Based on Southern Pipes Design
   ============================================ */
.products-page {
    width: 100%;
}

.products-hero {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-gold) 100%);
    position: relative;
    overflow: hidden;
}

.products-hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.products-hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.products-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.products-hero-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.95;
}

.product-categories-section {
    padding: 100px 0;
    background: var(--color-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127, 176, 105, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 176, 105, 0.2);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.category-info {
    padding: 30px;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.view-category-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-category-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.products-carousel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.product-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.product-carousel-slides {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-product-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.slide-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide-image {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.slide-image img,
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-product-slide:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.slide-info {
    padding: 40px;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.slide-info p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.view-product-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.view-product-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.carousel-button {
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: var(--color-primary);
    z-index: 10;
    font-size: 2rem;
    font-weight: 300;
}

.carousel-button:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.4);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

.applications-section {
    padding: 100px 0;
    background: var(--color-white);
}

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

.application-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(127, 176, 105, 0.1);
    text-align: center;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(127, 176, 105, 0.2);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.3);
}

.application-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 700;
}

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

.all-products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 100%);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
}

/* Image Gallery Styles */
.services-gallery,
.contact-gallery,
.about-gallery,
.home-image-gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* Team Carousel */
.team-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-carousel-slides {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

.team-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.team-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 40px;
}

/* Responsive styles for new components */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .product-carousel-slides,
    .team-carousel-slides {
        max-width: 700px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .heros {
        height: 35vh;
        min-height: 250px;
        padding: 0 20px;
    }
    
    .containers {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-contents {
        text-align: center;
        padding: 0;
    }
    
    .hero-contents h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero-contents p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .contact-section {
        padding: 60px 20px 50px 20px;
    }
    
    .contact-container {
        padding: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-info {
        padding: 32px 24px;
        margin: 0;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .contact-details {
        gap: 20px;
        margin-bottom: 0;
    }
    
    .contact-detail-item {
        padding: 16px;
        gap: 16px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-detail-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .contact-detail-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-detail-item h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .contact-detail-item p {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
        margin: 0;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .submit-button {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .product-carousel-slides,
    .team-carousel-slides {
        height: 400px;
    }
    
    .carousel-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .heros {
        height: 30vh;
        min-height: 200px;
    }
    
    .hero-contents h1 {
        font-size: 1.8rem;
    }
    
    .hero-contents p {
        font-size: 0.9rem;
    }
    
    .containers {
        padding: 0 15px;
    }
    
    .hero-contents {
        padding: 0 10px;
    }
}

/* Load animations from external file */
@import url('assets/animations.css');



/* New Service Categories Responsive Styles */
.new-services-section {
    padding: 60px 0;
}

.new-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .new-services-section {
        padding: 40px 0;
    }
    
    .new-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .new-services-section .services-intro {
        margin-bottom: 40px;
    }
    
    .service-item-card {
        padding: 25px;
    }
    
    .service-item-card h3 {
        font-size: 1.3rem;
        margin: 15px 0 10px;
    }
    
    .service-item-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Mobile Responsive for Featured Services */
@media (max-width: 768px) {
    .featured-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-service-card {
        padding: 20px;
    }
    
    .featured-service-card h3 {
        font-size: 1.3rem;
    }
    
    .featured-service-card p {
        font-size: 0.9rem;
    }
}

/* Ensure proper text alignment for bilingual content */
body.lang-ar .new-services-section,
body.lang-ar .services-section {
    direction: ltr;
    text-align: left;
}

body.lang-ar .service-item-card,
body.lang-ar .featured-service-card {
    text-align: left;
    direction: ltr;
}

body.lang-ar .service-item-card h3,
body.lang-ar .featured-service-card h3 {
    text-align: left;
    direction: ltr;
}

body.lang-ar .service-item-card p,
body.lang-ar .featured-service-card p {
    text-align: left;
    direction: ltr;
}

/* Professional Spacing and Layout Improvements */
section {
    padding: var(--spacing-2xl) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Fix for the contact page grid */
    .contact-page .grid-2 {
        gap: 30px !important;
    }

    .contact-info-card, .contact-form-card {
        padding: 30px !important;
        border-radius: 16px !important;
    }

    .contact-info-card h3, .contact-form-card h3 {
        font-size: 24px !important;
        margin-bottom: 25px !important;
        text-align: center;
    }

    /* Fix for the product page grid */
    .products-page .grid-3 {
        gap: 24px !important;
    }

    .category-card {
        padding: 30px !important;
        border-radius: 16px !important;
    }

    /* Fix for the career page grid */
    .career-page .positions-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .position-item {
        padding: 25px !important;
        border-radius: 16px !important;
    }

    /* Header adjustments for mobile */
    .header {
        padding: 15px 0 !important;
    }

    .logo-image {
        height: 35px !important;
    }

    .logo h2, .logo-text {
        font-size: 18px !important;
    }

    .mobile-menu-button {
        display: flex !important;
    }

    .nav {
        display: none !important; /* Hidden by default on mobile, toggled by JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        margin: 0 !important;
        z-index: 999;
    }

    .nav.open {
        display: flex !important;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
    }

    .nav ul li {
        margin: 0 0 15px 0 !important;
        width: 100%;
        text-align: center;
    }

    .nav ul li a {
        padding: 12px 0 !important;
        font-size: 16px !important;
        border-bottom: 1px solid #f0f0f0;
        color: var(--color-text) !important;
    }

    .header-actions {
        gap: 10px !important;
    }

    .language-toggle {
        width: 60px !important;
        height: 32px !important;
    }

    .toggle-slider {
        width: 24px !important;
        height: 24px !important;
    }

    .language-toggle.active .toggle-slider {
        transform: translateX(28px) !important;
    }

    /* Fix for the hero section on mobile */
    .hero-section-compact {
        padding: 60px 0 !important;
    }

    .hero-section-compact h1 {
        font-size: 2.2rem !important;
    }

    .hero-section-compact p {
        font-size: 1rem !important;
    }

    /* Fix for the build together section on mobile */
    .build-together-section {
        padding: 60px 0 !important;
    }

    .build-together-section h2 {
        font-size: 2rem !important;
    }

    .build-together-section p {
        font-size: 1rem !important;
    }
}

.section-title {
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.section-subtitle {
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* Grid Spacing */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

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

/* Card Styling */
.card {
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-base);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

/* RTL Adjustments for Spacing */
body.rtl .nav ul li {
    margin-left: 30px;
    margin-right: 0;
}

body.rtl .nav ul li:last-child {
    margin-left: 0;
}

/* Professional Typography */
body {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
    letter-spacing: -0.03em;
}

/* Attractive Design Enhancements */
.hero-section-compact {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.hero-section-compact h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.hero-section-compact p {
    font-size: 1.25rem;
    opacity: 0.8;
    color: var(--color-white);
}

.cta-link {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

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

.bg-light {
    background-color: #f9f9f9;
}

.build-together-section {
    padding: var(--spacing-3xl) 0;
    text-align: center;
    background: var(--color-white);
}

.build-together-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.05em;
}

.build-together-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}
