:root {
    --color-primary: #005f40;
    /* Deep Emerald Green */
    --color-primary-dark: #004d33;
    --color-accent: #4ade80;
    /* Vibrant Leaf Green */
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    /* Subtle Silver/Gray */
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-white: #ffffff;

    --font-main: 'Inter', sans-serif;

    --spacing-container: 1200px;
    --spacing-section: 6rem;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacing-section) 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-left: 1rem;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    /* Adjust based on preferred size */
    width: auto;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    /* Optional: Filter or swap if needed for light background, 
     but assume logo works on both for now or add filter */
    filter: brightness(0.8);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.header.dark-text .nav-link {
    color: var(--color-text) !important;
}

.header.scrolled .nav-link {
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 1s linear;
    /* Smooth crossfade */
}

.hero-video.active {
    opacity: 1;
    z-index: -1;
    /* Above the inactive one */
}

.hero-bg-placeholder {
    display: none;
    /* Keeping original styles as reference/fallback if needed later */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f3e2f 0%, #005f40 100%);
    z-index: -3;
    /* Behind videos */
}

/* Add a subtle animated pattern to the placeholder if image fails */
.hero-bg-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken for readability */
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Innovation Section */
.innovation {
    background-color: var(--color-bg-alt);
    text-align: center;
}

.section-line {
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-card);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Sustainability Section */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    height: 500px;
    background-color: #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e0e7ff 0%, #f0fdf4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-weight: 500;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #111827;
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-smooth);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-smooth);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

/* Product Thumbnails */
.card-image-container {
    width: 100%;
    height: 200px;
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.card:hover .product-thumb {
    transform: scale(1.05);
}

/* Product Detail Image */
.product-detail-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    background-color: var(--color-bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.card-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
}

.card-actions .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.card-actions .btn-text {
    width: 100%;
    text-align: center;
    margin: 0;
}

/* Quote Page Styles */
.quote-page-main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-light);
    padding: 120px 0 80px;
}

.quote-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-header h1 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 4rem;
}

.quote-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
}

.quote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.quote-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.quote-card:hover .quote-icon-wrapper {
    background-color: var(--color-primary);
}

.quote-icon {
    width: 40px;
    height: 40px;
    fill: var(--color-primary);
    transition: all 0.3s ease;
}

.quote-card:hover .quote-icon {
    fill: var(--color-white);
}

.quote-icon-img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.quote-card:hover .quote-icon-img {
    transform: scale(1.1);
}

.quote-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.quote-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quote-action-text {
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-action-text span {
    transition: transform 0.3s ease;
}


/* -------------------------------------------------- */
/*               ABOUT US PAGE STYLES                 */
/* -------------------------------------------------- */

/* Hero and Video Backgrounds */
.about-hero,
.final-cta-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.final-cta-section {
    height: 70vh;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay.dark {
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.minimal-hero {
    background: radial-gradient(circle at center, #1a4d2e 0%, #0d2617 100%);
}

.center-content {
    z-index: 1;
    max-width: 900px;
}

.cta-title {
    margin-bottom: 2.5rem;
    /* Added spacing between text and buttons */
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #a3f7bf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.p1 {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 30%;
    animation-duration: 8s;
}

.p2 {
    width: 15px;
    height: 15px;
    top: 70%;
    left: 60%;
    animation-duration: 12s;
}

.p3 {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 80%;
    animation-duration: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-50px);
        opacity: 0.8;
    }
}

/* Timeline Story */
.story-section {
    background: var(--color-bg-light);
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--color-bg-alt);
    border: 4px solid var(--color-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(left) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
    background: #111;
    color: white;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Mission & Vision */
.mission-vision-section {
    background: white;
}

.mv-block {
    padding: 2rem;
}

.mv-block h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.animated-underline {
    width: 50px;
    height: 4px;
    background: var(--color-warning);
    margin-top: 1rem;
    transition: width 0.3s ease;
}

.mv-block:hover .animated-underline {
    width: 100px;
}


/* Stats Section */
.stats-section {
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-item span {
    font-size: 2rem;
    font-weight: 700;
}


/* Responsive Timeline */
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }
}

/* Watermark Removal Crop */
.watermark-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Zoom in slightly and push image up to hide bottom watermark bar */
    transform: scale(1.1);
    object-position: center 40%;
}

.gallery-item {
    overflow: hidden;
    /* Ensure cropped parts are hidden */
    border-radius: 12px;
    /* Maintain existing rounding */
}

/* Footer Logo - Inline with text */
.footer-logo {
    height: 35px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 {
    margin: 0;
    display: inline-block;
}

/* Report Page Styles */
.report-page {
    background: #ffffff;
}

.report-hero {
    padding: 150px 0 80px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('report-hero-bg.jpg') center center / cover no-repeat;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.report-header {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.report-year {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.report-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.report-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.report-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.report-container {
    max-width: 900px;
    margin: 0 auto;
}

.report-content {
    padding: 3rem 0;
}

.report-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 3rem;
}

.report-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
}

.report-subsection {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d6a4f;
    margin: 2rem 0 1rem;
}

.report-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.25rem;
}

.report-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.report-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.75rem;
}

.report-list li strong {
    color: var(--color-primary);
    font-weight: 600;
}

.report-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #86efac;
}

.highlight-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 1rem;
    color: #2d6a4f;
    font-weight: 600;
    margin: 0;
}

.report-conclusion {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #1f2937;
    background: #f9fafb;
    padding: 2rem;
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    margin: 2rem 0;
}

.report-cta {
    background: linear-gradient(135deg, #1e5128 0%, #2d6a4f 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    margin: 4rem 0 2rem;
}

.report-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.report-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Responsive Report Page */
@media (max-width: 768px) {
    .report-hero h1 {
        font-size: 2.25rem;
    }

    .report-section-title {
        font-size: 1.75rem;
    }

    .report-subsection {
        font-size: 1.25rem;
    }

    .highlight-card h3 {
        font-size: 2.25rem;
    }

    .report-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* Minimalist Footer */
.footer {
    background-color: #000000;
    color: #888888;
    padding: 60px 0 40px;
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-info {
    border-bottom: 1px solid #222222;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: start;
}

.footer-info-item {
    display: flex;
    align-items: center;
}

.footer-info-item:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: #333333;
}

.footer-info-item span {
    color: #bbbbbb;
    margin-right: 5px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal a.active {
    color: #ffffff;
    font-weight: 500;
}

.footer-copyright {
    color: #555555;
}

.footer-social-minimal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon-min {
    width: 24px;
    height: 24px;
    color: #888888;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.social-icon-min svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon-min:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* WhatsApp Hover Tooltip Minimal */
.wa-tooltip {
    position: absolute;
    bottom: 120%;
    right: 0;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.social-icon-min:hover .wa-tooltip {
    display: flex;
}

.wa-tooltip a {
    color: #888888;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 6px 10px;
    border-radius: 4px;
}

.wa-tooltip a:hover {
    background: #25d366;
    color: #ffffff;
}

.wa-response-time {
    font-size: 0.65rem;
    color: #555555;
    margin-top: 4px;
    text-align: center;
    border-top: 1px solid #222222;
    padding-top: 4px;
}

@media (max-width: 768px) {
    .footer-info-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-info-item:not(:last-child)::after {
        display: none;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social-minimal {
        margin-top: 0;
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .hide-mobile {
        display: none !important;
    }

    /* About Us & Final CTA Mobile Refinement */
    .about-hero.minimal-hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 0 60px;
    }

    .about-hero .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .about-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-actions .btn {
        width: 80%;
        margin-left: 0 !important;
    }
}