/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-cocoa: #3A2118;
    --secondary-brown: #6B4226;
    --accent-gold: #C99A3D;
    --accent-gold-hover: #b08530;
    --forest-green: #2F5D3A;
    --bg-cream: #F8F4EA;
    --bg-white: #FFFFFF;
    --bg-warm-beige: #EFE6D5;
    --text-charcoal: #242424;
    --text-muted: #666666;
    --text-light: #F8F4EA;
    --footer-bg: #24140F;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 30px rgba(58, 33, 24, 0.15);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container Utility */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section Common Styling */
section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.sub-title {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-cocoa);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.light-text {
    color: var(--text-light);
}

.light-text .section-title, 
.light-text h2 {
    color: var(--bg-white);
}

/* Button Base Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.btn-gold, .btn-primary-gold {
    background-color: var(--accent-gold);
    color: var(--primary-cocoa);
}

.btn-gold:hover, .btn-primary-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-gold-sm {
    background-color: var(--accent-gold);
    color: var(--primary-cocoa);
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

.btn-gold-sm:hover {
    background-color: var(--accent-gold-hover);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   2. PAGE LOADER
   ========================================================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-cocoa);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    text-align: center;
    color: var(--bg-white);
}

.loader-logo {
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

.loader-content p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background-color: var(--accent-gold);
    animation: loadingProgress 1.5s ease infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   3. NAVBAR
   ========================================================================== */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar-header.scrolled {
    background: rgba(58, 33, 24, 0.92);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    color: var(--bg-white);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-subtext {
    color: var(--accent-gold);
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   4. HERO SECTION & METRICS BAR
   ========================================================================== */
/* .hero-section {
    background: linear-gradient(135deg, #3A2118 0%, #5A3824 100%);
    padding: 160px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
} */

.hero-section {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(201, 154, 61, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(122, 65, 35, 0.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #24130E 0%,
            #3A2118 50%,
            #5A3824 100%
        );
    padding: 160px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.badge-tag {
    display: inline-block;
    background: rgba(201, 154, 61, 0.15);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.badge-tag {
    position: relative;
    overflow: hidden;

    background: rgba(201,154,61,0.08);

    box-shadow:
        0 0 20px rgba(201,154,61,0.08);

    transition: all 0.4s ease;
}

.badge-tag::after {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transform: skewX(-20deg);

    animation: badgeShine 4s infinite;
}

@keyframes badgeShine {

    0% {
        left: -120%;
    }

    35%, 100% {
        left: 150%;
    }

}

.hero-title {
    color: var(--bg-white);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title span {
    color: var(--accent-gold);
    position: relative;
}

.hero-title span::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 2px;

    background: var(--accent-gold);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.6s ease;
}

.hero-title:hover span::after {
    transform: scaleX(1);
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* .hero-image-wrapper {
    position: relative;
} */

.hero-img {
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    width: 100%;
    height: 400px;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.45),
        0 0 60px rgba(201,154,61,0.12);

    transform: rotateY(-4deg) rotateX(2deg);

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform:
        rotateY(0deg)
        rotateX(0deg)
        translateY(-8px);

    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 80px rgba(201,154,61,0.2);
}

.floating-quality-card,
.floating-origin-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(35, 20, 14, 0.78);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(201, 154, 61, 0.35);

    border-radius: 14px;

    padding: 13px 16px;

    color: #fff;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.3);

    z-index: 2;
}

.floating-quality-card {
    left: -30px;
    bottom: 35px;

    animation: floatingCard 4s ease-in-out infinite;
}

.floating-origin-card {
    right: -25px;
    top: 30px;

    animation: floatingCard 5s ease-in-out infinite reverse;
}

.floating-quality-card strong,
.floating-origin-card strong {
    display: block;
    font-size: 0.85rem;
}

.floating-quality-card span,
.floating-origin-card small {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
}

.quality-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(201,154,61,0.15);
    color: var(--accent-gold);

    border: 1px solid rgba(201,154,61,0.4);
}

@keyframes floatingCard {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.hero-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(.2,.8,.2,1);
}

.hero-image-wrapper {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(.2,.8,.2,1);
}

.hero-content.show,
.hero-image-wrapper.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Metrics Bar */
.metrics-bar {
    background-color: var(--secondary-brown);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

/* .metric-item {
    color: var(--bg-white);
} */

.metric-item {
    position: relative;
    padding: 10px 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.metric-number,
.metric-text {
    transition: text-shadow 0.4s ease;
}

.metric-item:hover .metric-number,
.metric-item:hover .metric-text {
    text-shadow:
        0 0 15px rgba(201,154,61,0.55);
}

.metric-unit {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.metric-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ==========================================================================
   5. COMPANY INTRODUCTION
   ========================================================================== */
.intro-section {
    background-color: var(--bg-cream);
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rounded-img {
    width: 100%;
    height: 500px;
    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 25px 50px rgba(45, 25, 15, 0.18);

    border: 1px solid rgba(201, 154, 61, 0.15);

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.7s ease;
}

.intro-image {
    position: relative;
    overflow: visible;
}

.intro-image::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    left: -35px;
    bottom: -35px;

    background: rgba(201, 154, 61, 0.15);

    border-radius: 50%;

    filter: blur(35px);

    z-index: 0;
}

.intro-image::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(201, 154, 61, 0.35);

    border-radius: 24px;

    z-index: 0;
}

.rounded-img {
    position: relative;
    z-index: 1;
}

.intro-image:hover .rounded-img {
    transform: translateY(-8px) scale(1.015);

    box-shadow:
        0 35px 70px rgba(45, 25, 15, 0.25),
        0 0 40px rgba(201, 154, 61, 0.12);
}

.intro-content .section-title {
    position: relative;

    font-size: 2.5rem;
    line-height: 1.2;

    color: var(--primary-cocoa);

    margin-bottom: 25px;
}

.intro-content .section-title::after {
    content: "";

    display: block;

    width: 70px;
    height: 3px;

    margin-top: 18px;

    background: linear-gradient(
        90deg,
        var(--accent-gold),
        transparent
    );

    border-radius: 10px;
}

.intro-content > p {
    margin-bottom: 18px;

    color: var(--text-muted);

    font-size: 1rem;
    line-height: 1.8;

    max-width: 620px;
}

.mission-card {
    position: relative;

    margin-top: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.95),
            rgba(255,250,240,0.9)
        );

    padding: 25px 28px;

    border-left: 4px solid var(--accent-gold);

    border-radius: 16px;

    display: flex;

    gap: 20px;

    align-items: flex-start;

    box-shadow:
        0 15px 35px rgba(45, 25, 15, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 45px rgba(45, 25, 15, 0.14);
}


.mission-icon {
    width: 48px !important;
    height: 48px !important;

    display: grid !important;
    place-items: center !important;

    margin: 0 !important;
    padding: 0 !important;

    flex: 0 0 48px;

    font-size: 20px !important;
    line-height: 1 !important;

    color: var(--accent-gold);

    background: rgba(201, 154, 61, 0.12);

    border: 1px solid rgba(201, 154, 61, 0.25);

    border-radius: 50%;

    box-sizing: border-box;

    text-align: center;
}

.mission-card:hover .mission-icon {
    transform: rotate(8deg) scale(1.08);

    background: rgba(201, 154, 61, 0.18);
}

.mission-card h4 {
    color: var(--primary-cocoa);

    font-size: 1.1rem;

    margin-bottom: 8px;

    letter-spacing: 0.3px;
}

.mission-card p {
    font-style: italic;

    margin-bottom: 0;

    color: var(--text-charcoal);

    line-height: 1.7;

    font-size: 0.95rem;
}

.intro-container {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.2,.8,.2,1);
}

.intro-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   6. OUR PRODUCTS
   ========================================================================== */
.products-section {
    background-color: var(--bg-white);
}


 .products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;

    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--bg-cream);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}


 .product-img-box {
    height: 190px;
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.08);
}

.product-info {
    padding: 30px;
}


 .product-info h3 {
    font-size: 1.4rem;
    color: var(--primary-cocoa);
    margin-bottom: 8px;
}


 .product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}


 .product-info h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--forest-green);
    margin-bottom: 7px;
}


 .product-info ul {
    margin-bottom: 18px;
}


 .product-info ul li {
    font-size: 0.85rem;
    margin-bottom: 5px;

    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--text-charcoal);
}

.product-info ul li i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}


/* ==========================================================================
   7. CORE USP (Enhanced Design)
   ========================================================================== */
.usp-section {
    background: linear-gradient(135deg, #1c3b24 0%, #2F5D3A 50%, #152c1b 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 154, 61, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.usp-section .section-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 780px;
    margin: 15px auto 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.usp-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(201, 154, 61, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.usp-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.usp-card:hover::before {
    opacity: 1;
}

.usp-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(201, 154, 61, 0.15);
    border: 1px solid rgba(201, 154, 61, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.usp-card:hover .usp-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 154, 61, 0.25);
}

.usp-card i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.usp-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--bg-white);
    font-weight: 600;
}

.usp-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* ==========================================================================
   8. WHY CHOOSE US & PROCESS
   ========================================================================== */
.why-us-section {
    background-color: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    position: relative;
    box-shadow: var(--shadow-subtle);
    border-top: 3px solid var(--accent-gold);
}

.feature-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-warm-beige);
    position: absolute;
    top: 15px;
    right: 20px;
}

.feature-box h4 {
    font-size: 1.1rem;
    color: var(--primary-cocoa);
    margin-bottom: 10px;
    padding-right: 40px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Process Timeline Section */
.process-section {
    background-color: var(--bg-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    position: relative;
}

.step-card {
    background-color: var(--bg-cream);
    padding: 20px 15px;
    border-radius: var(--border-radius-sm);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.step-card:hover {
    background-color: var(--primary-cocoa);
    color: var(--bg-white);
}

.step-card:hover h4, .step-card:hover p {
    color: var(--bg-white);
}

.step-count {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--accent-gold);
    color: var(--primary-cocoa);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.step-card h4 {
    font-size: 1rem;
    color: var(--primary-cocoa);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   9. BUSINESS & TARGET MARKETS
   ========================================================================== */
.business-section {
    background-color: var(--bg-warm-beige);
    padding: 60px 0;
}

.business-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
}

.business-tags span {
    background: var(--bg-white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-cocoa);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Target Markets */
/* Target Markets (Enhanced Design) */
.markets-section {
    background: linear-gradient(135deg, #18331f 0%, #2F5D3A 50%, #122416 100%);
    position: relative;
    overflow: hidden;
}

.markets-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 154, 61, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.markets-section .section-header p{
    color: white;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.market-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 154, 61, 0.25);
    padding: 45px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.market-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(201, 154, 61, 0.12);
    border: 1px solid rgba(201, 154, 61, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.market-card:hover .market-icon-box {
    transform: scale(1.12);
    background: rgba(201, 154, 61, 0.25);
}

.market-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.market-card h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.market-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   10. INDUSTRIES & CLIENTELE
   ========================================================================== */
.industries-section {
    background-color: var(--bg-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background-color: var(--bg-cream);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-fast);
}

.industry-card:hover {
    transform: translateY(-8px);
    background-color: var(--primary-cocoa);
    color: var(--bg-white);
}

.industry-card i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.industry-card h4 {
    font-size: 1rem;
}

/* Clientele */
.clientele-section {
    background-color: var(--bg-cream);
    padding: 60px 0;
}

.clientele-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.client-logo-card {
    background: var(--bg-white);
    padding: 15px 40px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-cocoa);
    box-shadow: var(--shadow-subtle);
    letter-spacing: 1px;
}

/* ==========================================================================
   11. PACKAGING & ORDER INFO 
   ========================================================================== */
.pkg-order-section {
    background-color: var(--bg-white);
}

.pkg-order-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pkg-box, .order-box {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.pkg-box h3, .order-box h3 {
    font-size: 1.6rem;
    color: var(--primary-cocoa);
    margin-bottom: 15px;
}

.spec-list {
    margin-top: 20px;
}

.spec-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.moq-counter-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 20px 0 10px;
}

.moq-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--forest-green);
    line-height: 1;
}

.moq-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
}

.moq-label {
    font-weight: 600;
    color: var(--text-muted);
}



/* ==========================================================================
   12. EXPERIENCE & PARTNERSHIP
   ========================================================================== */
.experience-section {
    background-color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background-color: var(--bg-cream);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border-bottom: 3px solid var(--primary-cocoa);
}

.stat-card h3 {
    font-size: 1.3rem;
    color: var(--primary-cocoa);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Global Trade Partnership */
.partnership-section {
    background-color: var(--primary-cocoa);
    padding: 60px 0;
}

.partnership-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.partnership-formula {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.partnership-formula span {
    color: var(--accent-gold);
    font-weight: 700;
    margin: 0 8px;
}

/* ==========================================================================
   13. CONTACT & FLOATING LABEL FORM
   ========================================================================== */
/* ==========================================================================
   CONTACT SECTION (FIXED GLASSMORPHISM & DARK THEME)
   ========================================================================== */
.contact-section {
    background: linear-gradient(135deg, #1c3b24 0%, #2F5D3A 50%, #152c1b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Background Glow Effect like CTA */
.contact-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 154, 61, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* .contact-section .container .contact-info h2 {
    font-size: x-large;
} */

.contact-section .container .contact-info .sub-title {
    font-size: x-large;
}

/* Headings & Text Color Fix */
.contact-section .section-header h2 {
    color: #ffffff !important;
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.contact-info p{
    font-size:medium;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Form grid width kam kar di 1.2fr se 1fr */
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Office Boxes (Left Side Cards) */
.office-box {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 154, 61, 0.25) !important;
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.office-box h4 {
    color: var(--accent-gold) !important;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.office-box h4 i {
    color: var(--accent-gold) !important;
}

.office-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 5px;
}

/* Contact Form Container (Right Side) */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 154, 61, 0.25) !important;
    padding: 20px 25px; /* Outer top-bottom padding ghata kar 20px kar di */
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h3 {
    font-size: 1.25rem; /* Heading size reduce kiya */
    color: #ffffff !important;
    margin-bottom: 15px; /* Margin kam kiya */
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 6px;
    display: inline-block;
}

/* Contact Map Container Styling */
.map-container {
    margin-top: 18px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(201, 154, 61, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 0;
}

.map-container iframe {
    width: 100%;
    height: 180px;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.form-group {
    position: relative;
    margin-bottom: 12px; /* Input boxes ke beech ka gap 22px se ghata kar 12px kiya */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Form Inputs, Select & Textarea */
.form-group input,
.form-group select {
    width: 100%;
    padding: 8px 12px; /* Input fields ki height kam karne ke liye vertical padding 8px ki */
    font-size: 0.88rem;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    outline: none;
    transition: var(--transition-fast);
}

.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.88rem;
    height: 70px; /* Message box ki vertical height reduce ki */
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    outline: none;
    transition: var(--transition-fast);
}

.form-group select {
    color: #ffffff !important;
    cursor: pointer;
}

.form-group select option {
    background-color: #1c3b24 !important;
    color: #ffffff !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 0 10px rgba(201, 154, 61, 0.25);
}

/* Floating Label Fix for Dark Theme */
/* Centered Floating Label Fix */
.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%); /* Input box ke vertical center me place karega */
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.85rem;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    padding: 0 4px;
    background: transparent !important;
}

/* Textarea label alignment (top aligned) */
.form-group textarea ~ label {
    top: 14px;
    transform: none;
}

/* Floating effect jab user focus kare ya text type kare */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -7px;
    transform: none;
    font-size: 0.72rem;
    color: var(--accent-gold) !important;
    font-weight: 600;
    background: #1f3f26 !important; /* Label background pill effect */
    border-radius: 3px;
    line-height: 1;
}

/* Slightly Increase Form Size */
.contact-form-wrapper {
    padding: 30px 30px !important;
}

.form-group {
    margin-bottom: 15px !important;
}

.form-group input,
.form-group select {
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
}

.form-group textarea {
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    height: 90px !important;
}


/* ==========================================================================
   14. FINAL CTA & FOOTER
   ========================================================================== */


/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.brand-col h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.brand-col p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-col p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 0.8rem;
}

.footer-bottom p:first-child {
    color: var(--accent-gold);
    margin-bottom: 5px;
}

/* ==========================================================================
   14. SECTION ANIMATIONS
   ========================================================================== */

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section-specific animations */
.metrics-bar {
    opacity: 0;
}

.metrics-bar.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.metric-item {
    opacity: 0;
}

.metric-item.stagger-1 { animation: fadeInUp 0.6s ease 0.1s forwards; }
.metric-item.stagger-2 { animation: fadeInUp 0.6s ease 0.2s forwards; }
.metric-item.stagger-3 { animation: fadeInUp 0.6s ease 0.3s forwards; }
.metric-item.stagger-4 { animation: fadeInUp 0.6s ease 0.4s forwards; }

.intro-section {
    opacity: 0;
}

.intro-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.intro-image {
    opacity: 0;
}

.intro-content {
    opacity: 0;
}

.intro-container.visible .intro-image,
.intro-container.visible .intro-content {
    opacity: 1;
}

.products-section {
    opacity: 0;
}

.products-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.product-card {
    opacity: 0;
    transform: translateY(40px);
}

.product-card.stagger-1 {
    animation: slideInUp 0.7s ease 0.1s forwards;
}

.product-card.stagger-2 {
    animation: slideInUp 0.7s ease 0.3s forwards;
}

.usp-section {
    opacity: 0;
}

.usp-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.usp-card {
    opacity: 0;
    transform: scale(0.9);
}

.usp-card.stagger-1 { animation: scaleIn 0.6s ease 0.1s forwards; }
.usp-card.stagger-2 { animation: scaleIn 0.6s ease 0.2s forwards; }
.usp-card.stagger-3 { animation: scaleIn 0.6s ease 0.3s forwards; }
.usp-card.stagger-4 { animation: scaleIn 0.6s ease 0.4s forwards; }
.usp-card.stagger-5 { animation: scaleIn 0.6s ease 0.5s forwards; }

.why-us-section {
    opacity: 0;
}

.why-us-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-box {
    opacity: 0;
    transform: translateY(30px);
}

.feature-box.stagger-1 { animation: slideInUp 0.6s ease 0.1s forwards; }
.feature-box.stagger-2 { animation: slideInUp 0.6s ease 0.2s forwards; }
.feature-box.stagger-3 { animation: slideInUp 0.6s ease 0.3s forwards; }
.feature-box.stagger-4 { animation: slideInUp 0.6s ease 0.4s forwards; }
.feature-box.stagger-5 { animation: slideInUp 0.6s ease 0.5s forwards; }

.process-section {
    opacity: 0;
}

.process-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.step-card {
    opacity: 0;
    transform: translateY(40px);
}

.step-card.stagger-1 { animation: slideInUp 0.6s ease 0.1s forwards; }
.step-card.stagger-2 { animation: slideInUp 0.6s ease 0.2s forwards; }
.step-card.stagger-3 { animation: slideInUp 0.6s ease 0.3s forwards; }
.step-card.stagger-4 { animation: slideInUp 0.6s ease 0.4s forwards; }
.step-card.stagger-5 { animation: slideInUp 0.6s ease 0.5s forwards; }
.step-card.stagger-6 { animation: slideInUp 0.6s ease 0.6s forwards; }
.step-card.stagger-7 { animation: slideInUp 0.6s ease 0.7s forwards; }

.business-section {
    opacity: 0;
}

.business-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.business-tags span {
    opacity: 0;
    display: inline-block;
}

.business-tags span.stagger-1 { animation: fadeInUp 0.5s ease 0.1s forwards; }
.business-tags span.stagger-2 { animation: fadeInUp 0.5s ease 0.15s forwards; }
.business-tags span.stagger-3 { animation: fadeInUp 0.5s ease 0.2s forwards; }
.business-tags span.stagger-4 { animation: fadeInUp 0.5s ease 0.25s forwards; }
.business-tags span.stagger-5 { animation: fadeInUp 0.5s ease 0.3s forwards; }
.business-tags span.stagger-6 { animation: fadeInUp 0.5s ease 0.35s forwards; }
.business-tags span.stagger-7 { animation: fadeInUp 0.5s ease 0.4s forwards; }

.markets-section {
    opacity: 0;
}

.markets-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.market-card {
    opacity: 0;
    transform: scale(0.9);
}

.market-card.stagger-1 { animation: scaleIn 0.6s ease 0.1s forwards; }
.market-card.stagger-2 { animation: scaleIn 0.6s ease 0.2s forwards; }
.market-card.stagger-3 { animation: scaleIn 0.6s ease 0.3s forwards; }

.industries-section {
    opacity: 0;
}

.industries-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.industry-card {
    opacity: 0;
    transform: translateY(30px);
}

.industry-card.stagger-1 { animation: slideInUp 0.6s ease 0.1s forwards; }
.industry-card.stagger-2 { animation: slideInUp 0.6s ease 0.2s forwards; }
.industry-card.stagger-3 { animation: slideInUp 0.6s ease 0.3s forwards; }
.industry-card.stagger-4 { animation: slideInUp 0.6s ease 0.4s forwards; }

.clientele-section {
    opacity: 0;
}

.clientele-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.client-logo-card {
    opacity: 0;
    transform: translateY(30px);
}

.client-logo-card.stagger-1 { animation: slideInUp 0.6s ease 0.1s forwards; }
.client-logo-card.stagger-2 { animation: slideInUp 0.6s ease 0.2s forwards; }
.client-logo-card.stagger-3 { animation: slideInUp 0.6s ease 0.3s forwards; }

.pkg-order-section {
    opacity: 0;
}

.pkg-order-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.pkg-box,
.order-box {
    opacity: 0;
}

.experience-section {
    opacity: 0;
}

.experience-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.stat-card {
    opacity: 0;
    transform: scale(0.9);
}

.stat-card.stagger-1 { animation: scaleIn 0.6s ease 0.1s forwards; }
.stat-card.stagger-2 { animation: scaleIn 0.6s ease 0.2s forwards; }
.stat-card.stagger-3 { animation: scaleIn 0.6s ease 0.3s forwards; }
.stat-card.stagger-4 { animation: scaleIn 0.6s ease 0.4s forwards; }

.partnership-section {
    opacity: 0;
}

.partnership-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.contact-section {
    opacity: 0;
}

.contact-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.contact-info {
    opacity: 0;
}

.contact-form-wrapper {
    opacity: 0;
}

/* Two-card section animations - Left to Right and Right to Left */
.intro-container.animate .intro-image {
    animation: slideInFromLeft 0.9s ease 0.1s forwards !important;
}

.intro-container.animate .intro-content {
    animation: slideInFromRight 0.9s ease 0.2s forwards !important;
}

.pkg-order-container.animate .pkg-box {
    animation: slideInFromLeft 0.9s ease 0.1s forwards;
}

.pkg-order-container.animate .order-box {
    animation: slideInFromRight 0.9s ease 0.2s forwards;
}

.contact-container.animate .contact-info {
    animation: slideInFromLeft 0.9s ease 0.1s forwards;
}

.contact-container.animate .contact-form-wrapper {
    animation: slideInFromRight 0.9s ease 0.2s forwards;
}

.office-box {
    opacity: 0;
    transform: translateY(20px);
}

.office-box.stagger-1 { animation: slideInUp 0.6s ease 0.1s forwards; }
.office-box.stagger-2 { animation: slideInUp 0.6s ease 0.2s forwards; }

/* ==========================================================================
   15. RESPONSIVE BREAKPOINTS (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container,
    .intro-container,
    .products-grid,
    .pkg-order-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .metrics-container,
    .usp-grid,
    .features-grid,
    .markets-grid,
    .stats-grid,
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .quality-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .metrics-container,
    .usp-grid,
    .features-grid,
    .markets-grid,
    .stats-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .clientele-logos {
        flex-direction: column;
        align-items: center;
    }

    .cta-btns {
        flex-direction: column;
    }
}


/* ====================================
            FOOTER
====================================*/
.footer{
    background:#24140F;
    border-top:2px solid #B78B47;
    padding:22px 0;
}

.footer-bottoms{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
}

.footer-copy{
    flex:1;
}

.footer-copy p{
    color:#F5F1E8;
    font-size:15px;
    line-height:1.6;
}

.footer-copy span{
    color:#B78B47;
    font-weight:600;
}

.footer-copy a{
    color:#B78B47;
    transition:.35s ease;
}

.footer-copy a:hover{
    color:#E6C88B;
}

.footer-right{
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:auto;
    flex-shrink:0;
}

.footer-right img{
    width:180px;
    transition:.4s;
}

.footer-right img:hover{
    transform:scale(1.05);
}

/*==========================
      SCROLL BUTTON
==========================*/
.scroll-top{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width:65px;
    height:65px;
    border:2px solid #B78B47;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#B78B47;
    font-size:22px;
    transition:.4s;
    background:#24140F;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.scroll-top:hover{
    background:#B78B47;
    color:#0F0F0F;
    transform:translateY(-6px);
}

/*==========================
      RESPONSIVE
==========================*/
@media(max-width:991px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        justify-content:center;
    }

        .footer-right img{
        width:150px;
    }

    .scroll-top{
        width:52px;
        height:52px;
        font-size:18px;
    }

    .footer-copy p{
        font-size:14px;
        line-height:1.5;
    }
}

@media(max-width:576px){
    .footer{
        padding:18px 0;
    }

    .footer-copy p{
        font-size:13px;
        line-height:1.5;
    }

    .footer-right{
        flex-direction:column;
        gap:20px;
    }

    .footer-right img{
        width:130px;
    }
}