/* ===========================
   CSS Variables & Theme
   =========================== */
:root {
    --primary-color: #2872AF;
    --primary-dark: #1e5286;
    --primary-light: #3d8ec4;
    --text-color: #1a1a1a;
    --text-light: #555;
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* ===========================
   Navigation Bar
   =========================== */
.navbar {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-image {
  height: 100px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-contact {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-about {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 10s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 114, 175, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===========================
   CTA Button
   =========================== */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 114, 175, 0.3);
}

.cta-button-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* ===========================
   Main Sections
   =========================== */
.section {
    padding: 80px 0;
}

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

.section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

.section h3 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.section ul li {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ===========================
   Two Column Layout
   =========================== */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.two-column.reversed {
    grid-template-columns: 1fr 1fr;
}

.two-column.reversed .column-image {
    order: -1;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.column-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===========================
   Grid Layouts
   =========================== */
.industries-grid,
.process-grid,
.features-grid,
.impact-grid,
.commitments-grid,
.team-grid,
.metals-grid,
.facility-card,
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

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

.industry-card,
.process-card,
.feature-card,
.impact-card,
.commitment-card,
.team-card,
.metal-card,
.reason-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.section.alt-bg .industry-card,
.section.alt-bg .process-card,
.section.alt-bg .feature-card,
.section.alt-bg .impact-card,
.section.alt-bg .commitment-card,
.section.alt-bg .team-card,
.section.alt-bg .metal-card,
.section.alt-bg .reason-card {
    background: white;
}

.industry-card:hover,
.process-card:hover,
.feature-card:hover,
.impact-card:hover,
.commitment-card:hover,
.team-card:hover,
.metal-card:hover,
.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.process-card {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.industry-card h4,
.process-card h4,
.feature-card h3,
.impact-card h4,
.commitment-card h4,
.team-card h4,
.metal-card h4,
.reason-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.industry-card p,
.process-card p,
.feature-card p,
.impact-card p,
.commitment-card p,
.team-card p,
.reason-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===========================
   Pricing Factors
   =========================== */
.pricing-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.factor {
    padding: 25px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.section.alt-bg .factor {
    background: white;
}

.factor:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.factor h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.factor p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ===========================
   Steps Grid
   =========================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.section.alt-bg .step-card {
    background: white;
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card h4 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.step-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
}

/* ===========================
   Lists & Special Elements
   =========================== */
.savings-list,
.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.savings-list li,
.benefits-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.savings-list li::before,
.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.highlight {
    background: #e8f4ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    color: var(--text-color);
}

/* ===========================
   Contact Section
   =========================== */
.contact-content {
    animation: slideInRight 0.8s ease-out;
}

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

.contact-info {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.section.alt-bg .contact-info {
    background: #f0f0f0;
}

.info-item {
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-item p {
    margin-bottom: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.quick-services {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 2px solid var(--border-color);
}

.section.alt-bg .quick-services {
    background: white;
}

.quick-services h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.quick-services ul {
    list-style: none;
    margin-left: 0;
}

.quick-services li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.quick-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===========================
   Map Section
   =========================== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.map-caption {
    margin-top: 20px !important;
    text-align: center;
    color: var(--text-light);
}

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

.cta-list {
    text-align: left;
    display: inline-block;
    max-width: 500px;
}

.cta-list ul {
    text-align: left;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

/* ===========================
   Territories
   =========================== */
.territory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.territory-item {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.section.alt-bg .territory-item {
    background: white;
}

.territory-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-color);
    color: #e0e0e0;
    padding: 60px 0 20px;
    margin-top: 80px;
}
.footer-logo-image {
  height: 50px;
}

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

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

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

.footer-section a {
    color: #88c3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

/* ===========================
   Values Grid
   =========================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.section.alt-bg .value-card {
    background: white;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.value-card h3 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 22px;
}

.value-card p {
    font-size: 14px;
    margin-bottom: 0;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}



/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }

     .logo-image {
    width: 250px;
    height: 60px;
    }

    .nav-menu a::after {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 32px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-column.reversed .column-image {
        order: 0;
    }

    .industries-grid,
    .process-grid,
    .features-grid,
    .impact-grid,
    .commitments-grid,
    .team-grid,
    .metals-grid,
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .pricing-factors {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

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

    .industry-card,
    .process-card,
    .feature-card,
    .reason-card {
        padding: 20px;
    }

    .step-card {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }
    .two-column.reversed {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .nav-menu {
        gap: 0 !important;
    }

    .hero {
        height: 400px;
    }

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

    .hero-subtitle {
        font-size: 14px;
    }

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

    .cta-button-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .section {
        padding: 30px 0;
    }

    .section h2 {
        font-size: 24px;
    }

    .section h3 {
        font-size: 20px;
    }

    .industries-grid,
    .process-grid,
    .features-grid,
    .impact-grid,
    .commitments-grid,
    .team-grid,
    .metals-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

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

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

    .section p {
        font-size: 14px;
    }
}
