/* ===== ROOT VARIABLES ===== */
:root {
    --color-primary: #211a0f;
    --color-primary-light: #745622;
    --color-secondary: #f3f2f0;
    --color-accent: #745622;
    --color-accent-dark: #211a0f;
    --color-cream: #faf9f7;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e5e5e5;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #745622 0%, #211a0f 100%);
    --gradient-accent: linear-gradient(135deg, #745622 0%, #211a0f 100%);
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 0;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.marquee-content .separator {
    opacity: 0.5;
}

.marquee-content i {
    margin-right: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--color-cream);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-brand {
    flex: 0 0 auto;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cart-link {
    font-size: 18px;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(33, 26, 15, 0.8) 0%,
        rgba(33, 26, 15, 0.5) 50%,
        rgba(33, 26, 15, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #745622;
    font-style: italic;
    position: relative;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #8a6b2e 0%, #2d2318 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    background-color: white;
    color: #211a0f;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.2s; }
.animate-fade-up.delay-2 { animation-delay: 0.4s; }
.animate-fade-up.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
    padding: 60px 0;
    background-color: white;
}

.highlight-card {
    text-align: center;
    padding: 30px;
    background: var(--color-cream);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.highlight-card i {
    font-size: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #211a0f;
    margin-bottom: 5px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.category-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-body);
}

/* ===== TRANSFORM SECTION ===== */
.transform-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 25px;
    color: #211a0f;
}

.section-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.transform-image {
    text-align: center;
    padding: 20px;
}

.transform-image img {
    max-height: 350px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.transform-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    border-bottom: 1px solid var(--color-border);
}

.feature-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.feature-list li a:hover {
    padding-left: 10px;
    color: #745622;
}

.feature-list li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.feature-list li a i {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.benefit-card {
    background: var(--color-cream);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #745622;
}

.benefit-card h4 {
    font-size: 20px;
    color: #211a0f;
    margin-bottom: 20px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.benefit-card hr {
    margin: 20px 0;
    border-color: var(--color-border);
}

/* ===== PASSION SECTION ===== */
.passion-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.passion-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 30px;
}

.passion-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    opacity: 0.9;
}

.passion-text strong {
    color: #f3d382;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.products-section .section-title {
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.product-badge.new {
    background: #745622;
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background-color: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-unit {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-suffix {
    font-size: 18px;
    font-weight: 500;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-top: -5px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== APPLICATIONS SECTION ===== */
.applications-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.app-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.app-icon i {
    font-size: 36px;
    color: white;
}

.app-card h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #211a0f;
}

.app-card p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== TECH SECTION ===== */
.tech-section {
    padding: 100px 0;
    background-color: white;
}

.tech-card {
    background: var(--color-cream);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.tech-card i {
    font-size: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.tech-card h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #211a0f;
}

.specs-table {
    margin-top: 50px;
    background: var(--color-cream);
    padding: 30px;
    border-radius: 16px;
}

.specs-table .table {
    margin-bottom: 0;
}

.specs-table .table th {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px;
}

.specs-table .table td {
    padding: 12px 15px;
    border-color: var(--color-border);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.features-slider {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.feature-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== CERTIFICATIONS ===== */
.certifications-section {
    padding: 60px 0;
    background-color: white;
    overflow: hidden;
}

.certifications-section h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-light);
}

.certifications-track {
    overflow: hidden;
}

.certifications-slider {
    display: flex;
    gap: 60px;
    animation: slideLogos 20s linear infinite;
}

.certifications-slider img {
    height: 70px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(50%);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.certifications-slider img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes slideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.experience-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.experience-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
}

.experience-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    color: #745622;
    font-size: 32px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #211a0f;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background-color: white;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
}

.accordion-item:first-child {
    border-top: 1px solid var(--color-border);
}

.accordion-button {
    background: transparent;
    padding: 25px 0;
    font-size: 17px;
    font-weight: 500;
    color: #211a0f;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #745622;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23745622'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 0 25px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.contact-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    border-color: #745622;
    box-shadow: 0 0 0 3px rgba(116, 86, 34, 0.15);
}

.contact-info-card {
    background: var(--gradient-primary);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-avatar i {
    font-size: 32px;
    color: #f3d382;
}

.contact-info-card h3 {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card > p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-tagline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-tagline span {
    font-size: 15px;
}

.contact-tagline i {
    font-size: 20px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover .contact-tagline i {
    transform: translateX(10px);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #211a0f;
    color: white;
}

.footer-top {
    background-color: #f5f5f5;
    padding: 25px 0;
    color: var(--color-text);
}

.footer-top a {
    color: var(--color-text);
    font-size: 14px;
}

.footer-top a:hover {
    color: #745622;
}

.footer-top span {
    font-size: 14px;
}

.footer-main {
    padding: 60px 0;
}

.footer-brand .brand-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #f3d382, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background-color: #745622;
    border-color: #745622;
    transform: translateY(-3px);
}

.footer-payments {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-payments i {
    font-size: 32px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-payments i:hover {
    opacity: 1;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

.footer-bottom a {
    font-size: 13px;
    opacity: 0.7;
    margin-left: 25px;
}

.footer-bottom a:hover {
    opacity: 1;
    color: #745622;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #8a6b2e 0%, #2d2318 100%);
    transform: translateY(-5px);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar-brand {
        order: 1;
    }

    .navbar-toggler {
        order: 2;
    }

    .navbar-collapse {
        order: 3;
        width: 100%;
        padding-top: 20px;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .transform-section .row {
        gap: 40px;
    }

    .transform-image {
        order: -1;
    }

    .contact-info-card {
        margin-top: 40px;
    }

    .footer-brand,
    .footer-social,
    .footer-payments {
        text-align: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom a {
        display: block;
        margin: 10px 0 0;
    }
}

@media (max-width: 767px) {
    .categories-section,
    .applications-section,
    .tech-section {
        padding: 60px 0;
    }

    .passion-section,
    .products-section,
    .features-section,
    .testimonials-section,
    .faq-section,
    .contact-section {
        padding: 70px 0;
    }

    .stats-section {
        padding: 50px 0;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .experience-section {
        padding: 100px 0;
    }

    .footer-top .row {
        gap: 15px;
    }

    .footer-top .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .contact-info-card {
        padding: 40px 30px;
    }
}