/* ===================================
   Three Threads - Main Stylesheet
   Modern, Elegant, Premium Design
   Brand Colors: Warm Neutrals with Copper Accents
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #1a1a1a;
    --primary-dark: #0d0d0d;
    --primary-light: #2d2d2d;
    --secondary-color: #1a1a1a;
    --accent-copper: #b87333;
    --accent-gold: #c9a962;
    --accent-rose: #d4a5a5;
    --accent-sage: #9caf88;
    --text-color: #2c2c2c;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --white: #FFFFFF;
    --off-white: #faf9f7;
    --cream: #f5f3f0;
    --warm-gray: #e8e5e1;
    --light-gray: #f0ede9;
    --border-color: #e0ddd8;
    
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
    --shadow-md: 0 4px 20px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 26, 26, 0.12);
    --shadow-xl: 0 24px 60px rgba(26, 26, 26, 0.16);
    --shadow-glow: 0 0 40px rgba(184, 115, 51, 0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
    
    --container-max-width: 1280px;
    --section-padding: 120px 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--off-white);
    overflow-x: hidden;
    text-align: justify;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Selection */
::selection {
    background: var(--accent-copper);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-copper);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-copper);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a06830;
}

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

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

ul {
    list-style: none;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 24px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity var(--transition-normal);
}

.logo:hover img {
    opacity: 0.7;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--font-family);
    transition: color var(--transition-normal);
}

.navbar.scrolled .logo-text {
    color: var(--secondary-color);
}

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

.nav-link {
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 8px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-copper);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

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

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent-copper);
}

.nav-link.active {
    color: var(--white);
}

.navbar.scrolled .nav-link.active {
    color: var(--accent-copper);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: background var(--transition-fast);
}

.navbar.scrolled .hamburger {
    background: var(--secondary-color);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: inherit;
    left: 0;
    transition: transform var(--transition-normal);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--secondary-color);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--secondary-color);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    background: url('../images/top.jpeg') top center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 140px 20px 100px;
    width: 100%;
}

.hero-text {
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    font-family: var(--font-display);
    line-height: 1.05;
    margin-bottom: 60px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--accent-gold);
    position: relative;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
    text-align: center;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    display: none;
}

.hero-image-placeholder {
    width: 450px;
    height: 450px;
    background: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
}

.hero-image-placeholder::before {
    content: '👕';
    font-size: 180px;
    filter: none;
}

.hero-image-placeholder img {
    position: absolute;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeFloat 2.5s ease-in-out infinite;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin: 12px auto 0;
}

@keyframes fadeFloat {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px;
    font-family: var(--font-family);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: var(--accent-copper);
    color: var(--white);
    border-color: var(--accent-copper);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 115, 51, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.btn-small {
    padding: 12px 28px;
    font-size: 0.7rem;
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

.btn-small:hover {
    background: var(--accent-copper);
    border-color: var(--accent-copper);
    color: var(--white);
}

.btn-large {
    padding: 20px 48px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #a06830 100%);
    color: var(--white);
    border-color: var(--accent-copper);
}

.btn-full:hover {
    background: linear-gradient(135deg, #a06830 0%, var(--accent-copper) 100%);
    border-color: #a06830;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.35);
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    background: linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
    padding: 100px 0;
    border-top: none;
    border-bottom: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-item {
    color: var(--secondary-color);
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 14px;
    color: var(--accent-copper);
    letter-spacing: -0.02em;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    vertical-align: super;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================================
   Section Styles
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    color: var(--accent-copper);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    position: relative;
    padding: 0 30px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--accent-copper);
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: var(--light-gray);
}

.about-image-wrapper.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper.placeholder::after {
    content: '📸';
    font-size: 80px;
    opacity: 0.3;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #a06830 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.exp-text {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-display);
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 1rem;
    text-align: justify;
}

.about-philosophy {
    margin: 36px 0;
    padding-left: 28px;
    border-left: 3px solid var(--accent-copper);
}

.about-philosophy .philosophy-item {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

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

.about-values {
    margin: 32px 0;
    padding: 32px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
    border: none;
    border-radius: var(--border-radius-md);
}

.about-values p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-cta {
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-cta em {
    font-style: italic;
    color: var(--secondary-color);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature span {
    font-weight: 500;
    color: var(--text-color);
}

/* ===================================
   Products Section
   =================================== */
.products {
    padding: var(--section-padding);
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--cream);
    overflow: hidden;
}

.product-image.placeholder::after {
    content: '👕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    opacity: 0.3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 24px 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: justify;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    padding: var(--section-padding);
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: var(--off-white);
    padding: 50px 35px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, var(--accent-copper) 0%, var(--accent-gold) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.why-card:hover {
    background: var(--white);
    border-color: rgba(184, 115, 51, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #a06830 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    transition: transform var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 14px;
    font-family: var(--font-display);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
    text-align: justify;
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: 160px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(184, 115, 51, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-bottom: 42px;
    font-weight: 300;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    -webkit-tap-highlight-color: transparent;
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--accent-copper) 0%, #a06830 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.contact-item:hover .contact-icon {
    transform: scale(1.08);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-family: var(--font-display);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 36px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-copper);
    border-color: var(--accent-copper);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.3);
}

.social-link:hover svg {
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: none;
}

.form-group {
    margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--off-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-copper);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    text-transform: none;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    max-width: 300px;
    text-align: justify;
    font-size: 0.92rem;
}

.footer-links h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 32px;
    color: var(--accent-copper);
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-copper);
    transition: width var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-newsletter h4 {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: var(--accent-copper);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-direction: column;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    outline: none;
    margin-bottom: 24px;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-bottom-color: var(--accent-copper);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-transform: none;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.newsletter-form .btn {
    padding: 16px 32px;
    background: var(--accent-copper);
    border-color: var(--accent-copper);
    color: var(--white);
    align-self: flex-start;
    border-radius: var(--border-radius-sm);
}

.newsletter-form .btn:hover {
    background: transparent;
    border-color: var(--accent-copper);
    color: var(--accent-copper);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   Animations
   =================================== */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.animate-slide-in {
    animation: slideIn 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateX(50px);
}

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

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    body {
        text-align: justify;
    }
    
    .section-header {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-xl);
        padding: 40px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--text-color);
        font-size: 0.9rem;
    }
    
    .nav-link::after {
        background: var(--accent-copper);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
    
    .logo img {
        height: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .hero-image-placeholder::before {
        font-size: 100px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        text-align: justify;
    }
    
    .about-text h3 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .about-text p {
        text-align: justify;
        margin-bottom: 16px;
    }
    
    .about-philosophy {
        text-align: justify;
    }
    
    .about-values {
        text-align: center;
    }
    
    .about-cta {
        text-align: center;
    }
    
    .about-image-wrapper {
        max-width: 100%;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        right: 10px;
        bottom: -20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-info {
        padding: 16px 14px;
        text-align: center;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .product-info p {
        font-size: 0.82rem;
        text-align: center;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 35px 25px;
    }
    
    .why-card p {
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h3 {
        text-align: center;
    }
    
    .contact-info p {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        text-align: center;
    }
    
    .contact-details p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group label {
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form .btn {
        align-self: center;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 30px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-info {
        padding: 20px 16px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .product-info p {
        font-size: 0.9rem;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: 10px;
    }
    
    .exp-number {
        font-size: 0.6rem;
    }
    
    .exp-text {
        font-size: 1.3rem;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-20 {
    margin-top: 20px;
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .hero-buttons,
    .contact-form {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}
