:root {
    --primary: #c97d24;
    --primary-dark: #aa6515;
    --dark: #1e1b18;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --gray: #67615c;
    --border: #e6e1da;
    --success: #2d6a4f;
    --warning: #d9480f;
    --info: #0b69a3;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    font-weight: 400;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-submit, .btn-table {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-table {
    background: var(--dark);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.btn-table:hover {
    background: var(--primary);
}

/* Hero Section */
.hero {
    background: #2a221b;
    position: relative;
    padding: 12rem 0 8rem 0;
    color: var(--white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-tag {
    background: rgba(201, 125, 36, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 1.5rem 0;
}

.hero p {
    font-size: 1.2rem;
    color: #e6e1da;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Value Props */
.value-props {
    padding: 4rem 0;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
}

.value-props .container {
    display: flex;
    gap: 2rem;
}

.prop-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.prop-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.prop-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.prop-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.showcase-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.02);
}

.showcase-card .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
}

.card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Fallback elegant vector patterns built entirely via CSS linear gradients to avoid external image dependencies */
.text-ankara {
    background: repeating-linear-gradient(45deg, #c97d24, #c97d24 10px, #aa6515 10px, #aa6515 20px);
}
.text-khadi {
    background: repeating-linear-gradient(90deg, #eae5df, #eae5df 4px, #dfd8cf 4px, #dfd8cf 8px);
}
.text-asoeke {
    background: repeating-linear-gradient(0deg, #4a2810, #4a2810 15px, #c97d24 15px, #c97d24 18px);
}

.card-body {
    padding: 1.75rem;
}

.card-body h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.card-body p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.card-body .spec {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}

/* Catalog Table Section */
.catalog {
    background: var(--light-bg);
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.catalog-table-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow-x: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.catalog-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.catalog-table th, .catalog-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.catalog-table th {
    background: #f1ede7;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.catalog-table tbody tr:last-child td {
    border-bottom: none;
}

.status {
    font-weight: 600;
    font-size: 0.85rem;
}
.status.in-transit { color: var(--warning); }
.status.ready { color: var(--success); }
.status.source { color: var(--info); }

/* Contact & Forms */
.contact {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-item span {
    font-size: 1.5rem;
    background: #f1ede7;
    padding: 0.5rem;
    border-radius: 6px;
    line-height: 1;
}

.info-item p {
    margin: 0;
    color: var(--dark);
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--dark);
    color: #a39c96;
    text-align: center;
    padding: 3rem 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .value-props .container { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
/* Custom Popup Styles */
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px); /* Elegant blurred background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-popup-overlay.active {
    opacity: 1;
}

.custom-popup-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.custom-popup-overlay.active .custom-popup-card {
    transform: translateY(0);
}

.popup-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.custom-popup-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.6rem;
    color: #1a202c;
    font-family: inherit;
}

.popup-greeting {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.popup-body {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-body span {
    color: #2b6cb0; /* Highlights the user's email */
    font-weight: 600;
}

.popup-close-btn {
    background: #1a202c; /* Corporate black/dark slate button */
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
}

.popup-close-btn:hover {
    background: #2d3748;
}

/* About / Our Story Section */
.about {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 1rem 0 1.5rem 0;
    color: var(--dark);
}

.about-content .lead {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.section-tag {
    background: rgba(201, 125, 36, 0.1);
    color: var(--primary);
    border: 1px solid rgba(201, 125, 36, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* Stats Card Styling */
.about-stats-card {
    position: relative;
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 125, 36, 0.08);
}

.about-stats-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
    line-height: 1.3;
}

.about-stats-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}