/* ===================================
   Trade Bridge International LLC
   Main Stylesheet
   =================================== */

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

:root {
    /* Brand Colors */
    --primary-color: #1D1F57;
    --secondary-color: #D6A628;
    --accent-light: #f4f1e8;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Typography */
    --font-display: 'Crimson Pro', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 2rem 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

.text-primary {
    color: var(--primary-color) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

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

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Padding */
.section-padding {
    padding: var(--section-padding);
}

/* Background Light */
.bg-light {
    background-color: var(--gray-50);
}

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

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

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

/* .logo { */
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 0; */
    /* line-height: 1; */
/* } */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 80px;          /* adjust as needed */
    /* width: 200px; */
    display: block;
}

.logo-bottom {
    display: flex;
    align-items: center;
    text-decoration: none;
	/* background-color: var(--white); */
	/* background: linear-gradient( */
        /* to right, */
        /* var(--white, #ffffff) 0%, */
		/* var(--white, #ffffff) 100% */
        /* transparent 75%, */
        /* transparent 100% */
    /* ); */
}

.logo-bottom img {
    height: 60px;          /* adjust as needed */
	width: 255px;
    /* width: 200px; */
    display: block;
	background-color: var(--white);
}

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

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -4px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link-active {
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding: 0.5rem 0;
}

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

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

/* .nav-link.active { */
    /* color: var(--primary-color); */
/* } */

/* Mobile Menu Toggle */
.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-color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* ===================================
   Hero Section
   =================================== */
/* .hero { */
    /* position: relative; */
    /* min-height: 100vh; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%); */
    /* background-image:  */
        /* linear-gradient(135deg, rgba(29, 31, 87, 0.95) 0%, rgba(42, 45, 110, 0.95) 100%), */
        /* url('../images/hero/container-ship.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-attachment: fixed; */
    /* color: var(--white); */
    /* overflow: hidden; */
/* } */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Changed from center to flex-start to align left */
    justify-content: flex-start; 
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%); */
    background-image: url('../images/hero/container-ship.jpeg');    
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    color: var(--white);
    overflow: hidden;
}

.hero-content {
    /* Set width to 50% of the container */
    max-width: 50%;
    /* Changed from center to left alignment */
    text-align: left;
    margin: 0;
	/* background-color: var(--gray-900); */
	display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
	padding: 10rem 0;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    /* Aligns buttons to the left to match text */
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Optional: Mobile adjustment to prevent text from being too cramped */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-cta {
        justify-content: center;
    }
	.product-detail-grid {
		display: flex;
		flex-direction: column;
	}

	.product-detail-grid .product-detail-image {
		order: 1;
	}

	.product-detail-grid .product-detail-content {
		order: 2;
	}
	
	.footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 2.5rem;
    }
    
    .footer-col-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .footer-col-brand .logo-bottom img {
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-links li {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-col-brand {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
	.footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-col-brand {
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-col-brand .logo-bottom {
        margin-bottom: 1rem;
    }
    
    .footer-col-brand .logo-bottom img {
        height: 45px;
        margin: 0 auto;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    .footer-col {
        text-align: left;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.7rem;
    }
    
    .footer-links li {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 31, 87, 0.9) 0%, rgba(42, 45, 110, 0.85) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
	/* background-color: var(--gray-300); */
	margin-left: 0;
	padding-left: 10;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 1;
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(214, 166, 40, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    color: var(--secondary-color);
    padding: 0.5rem 0;
    font-weight: 600;
    border: none;
}

.btn-text:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Trust Section (Stats)
   =================================== */
.trust-section {
    padding: 3rem 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Section Grid (About Preview)
   =================================== */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.section-content {
    padding: 1rem 0;
}

.section-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
	text-align: justify;
}

.section-image {
	width: 100%;
    max-width: 520px;          /* controls image width */
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.section-image:hover img {
    transform: scale(1.05);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.7;
}

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

.product-highlight {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.product-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-highlight-image {
    height: 250px;
    overflow: hidden;
}

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

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

.product-highlight-content {
    padding: 2rem;
}

.product-highlight-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.product-highlight-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%);
    background-image: 
        linear-gradient(135deg, rgba(29, 31, 87, 0.95) 0%, rgba(42, 45, 110, 0.95) 100%),
        /* url('../images/hero/global-network.jpg'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 31, 87, 0.9) 0%, rgba(42, 45, 110, 0.85) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%); */
    background-image: 
        /* linear-gradient(135deg, rgba(29, 31, 87, 0.95) 0%, rgba(42, 45, 110, 0.95) 100%), */
        url('../images/about/about-us.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header-products {
	    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%); */
    background-image: url('../images/products/products.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header-contact {
	    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 80px;
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%); */
    background-image: url('../images/products/contacts.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 31, 87, 0.3) 0%, rgba(42, 45, 110, 0.4) 100%);
}

.privacy-header-contact {
	position: relative;
    padding: 4rem 0 2.5rem;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%);
    /* background-image: url('../images/products/contacts.jpg'); */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.privacy-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 31, 87, 0.3) 0%, rgba(42, 45, 110, 0.4) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* ===================================
   Mission & Vision Cards
   =================================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

.mission-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===================================
   Core Values Section
   =================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   Advantages Grid
   =================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-color);
}

.advantage-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   Products Detail Section
   =================================== */
.product-section {
    scroll-margin-top: 100px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.product-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content {
    padding: 1rem 0;
}

.product-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--accent-light);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
	text-align: justify;
}

.product-features h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.8rem 0;
    color: var(--gray-600);
    line-height: 1.7;
    border-bottom: 1px solid var(--gray-200);
}

.product-features li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.1rem;
    /* background-color: var(--gray-50); */
    border-radius: 5px;
}

.spec-item svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.spec-item span {
    color: var(--gray-700);
    font-weight: 500;
}

/* ===================================
   Contact Page
   =================================== */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--gray-50);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    padding: 0.9rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(214, 166, 40, 0.1);
}

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

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    padding: 1rem;
    background-color: #dcfce7;
    color: #166534;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

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

.contact-info-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0.3rem;
}

.contact-info-content a {
    color: var(--secondary-color);
    font-weight: 500;
}

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

/* Business Hours */
.contact-hours {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d6e 100%);
    color: var(--white);
}

.contact-hours .contact-info-title {
    color: var(--white);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-day {
    font-weight: 600;
}

.hours-time {
    color: rgba(255, 255, 255, 0.9);
}

.hours-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 0;
}

/* Map Section */
/* .map-section { */
    /* height: 400px; */
    /* background-color: var(--gray-200); */
/* } */

.map-section {
  width: 100%;
}

.map-embed {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 12px; /* optional */
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

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

.footer-col-brand {
    padding-right: 1rem;
}

.footer-col-brand .logo-bottom {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-col-brand .logo-bottom img {
    display: block;
    height: 60px;
    width: auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-family: var(--font-body);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
	
	.section-grid {
        display: flex;
        flex-direction: column;
    }
	
	.section-image {
        order: -1; /* This moves the image to the top */
    }
    
    .section-content {
        order: 1; /* This keeps the content below */
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .products-showcase,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .product-detail-image {
        height: 300px;
    }
}
