@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --logo-red: #E31E24;
    --logo-blue: #1A237E;
    --white: #ffffff;
    --light-grey: #f4f7f6;
    --dark-text: #0a0a0a;
    --medium-text: #4a4a4a;
    --accent-silver: #e2e8f0;
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 50px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.02);
    --gold: #D4AF37;
    --text-light: #6c757d;
    --primary-brown: #5d4037;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* --- PREMIUM SCROLL ANIMATIONS --- */
.js-enabled .reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
}
.js-enabled .reveal.active { 
    opacity: 1; 
    transform: translateY(0); 
}

/* --- BUTTONS --- */
.cta-btn {
    display: inline-block;
    background: var(--logo-red);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    /* text-transform removed */
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.cta-btn:hover {
    background: var(--logo-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    color: white !important;
}

.cta-btn-outline {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    /* text-transform removed */
    letter-spacing: 1px;
    transition: 0.3s;
    border: 1px solid white;
    color: white !important;
    background: transparent;
}

.cta-btn-outline:hover {
    background: white;
    color: var(--logo-blue) !important;
    transform: translateY(-3px);
}

.cta-btn-small {
    display: inline-block;
    background: var(--logo-red);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.cta-btn-small:hover {
    background: var(--logo-blue);
}

/* --- LUXURY TOP BAR --- */
.top-bar {
    background: #000;
    color: white;
    padding: 10px 5%;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.top-bar-content a { color: white; text-decoration: none; margin-left: 20px; transition: 0.3s; }
.top-bar-content a:hover { color: var(--logo-red); }

/* --- GLASS NAV --- */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo img { height: 45px; transition: var(--transition-premium); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { 
    text-decoration: none; 
    color: var(--dark-text); 
    font-weight: 600; 
    font-size: 0.85rem; 
    transition: var(--transition-premium);
}

.nav-links a:hover { color: var(--logo-red); }

/* --- DROPDOWN --- */
.dropdown { position: relative; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    box-shadow: var(--shadow-premium);
    padding: 10px 0;
    border-top: 4px solid var(--logo-red);
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    padding: 12px 25px;
    display: block;
    color: var(--medium-text);
    font-size: 0.85rem;
}

/* --- LUXURY HERO --- */
.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/hero.png') center/cover;
    z-index: -1;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns { from { transform: scale(1); } to { transform: scale(1.1); } }

.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; color: white; text-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--gold); font-family: 'Playfair Display', serif; display: block; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.2rem; max-width: 600px; margin: 20px 0 40px 0; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--logo-blue) !important;
    margin-bottom: 10px;
    line-height: 1.2;
}

.section-title p {
    font-size: 1rem;
    /* text-transform removed */
    letter-spacing: 3px;
    color: var(--logo-red);
    font-weight: 600;
}

/* --- LEATHER EXCELLENCE SECTION --- */
.leather-showcase {
    padding: 100px 5%;
    background: #fff;
}

.leather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leather-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.leather-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.leather-item:hover img {
    transform: scale(1.1);
}

.leather-item-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(20px);
    transition: 0.5s;
}

.leather-item:hover .leather-item-content {
    transform: translateY(0);
}

.leather-item-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.leather-item-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- CRAFT SECTION --- */
.craft-banner {
    background: var(--logo-blue);
    color: white;
    padding: 80px 5%;
    display: flex;
    align-items: center;
    gap: 100px;
}

.craft-text { flex: 1; }
.craft-text h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 20px; }
.craft-text p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }

.craft-image {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 30px 30px 0 var(--logo-red);
}

.craft-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- GLOBAL STATS --- */
.global-stats {
    background: var(--logo-red);
    padding: 60px 5%;
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-label {
    /* text-transform removed */
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 100px 5%;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px;
    background: #fdfdfd;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-premium);
    border: 1px solid var(--accent-silver);
}

.feature-card:hover {
    background: white;
    box-shadow: var(--shadow-premium);
    border-color: var(--logo-red);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--logo-red);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--logo-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- MANUFACTURING SECTION --- */
.manufacturing-section {
    padding: 100px 5%;
    background: #fdfdfd;
}

.process-container {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.process-image {
    flex: 1;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.process-image img { width: 100%; height: 100%; object-fit: cover; }

.process-steps {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 25px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--logo-red);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--logo-blue);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: var(--medium-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step:hover .step-num {
    opacity: 1;
    transition: 0.3s;
}

@media (max-width: 1100px) {
    .process-container { flex-direction: column; }
    .process-image { width: 100%; height: 400px; }
}

/* --- PRODUCT GRID & CARDS --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 50px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-premium);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 1s ease;
}

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

.product-info {
    padding: 30px;
}

/* --- CONTACT SECTION --- */
#contact {
    padding: 100px 5%;
    background: var(--light-grey);
}

.contact-container {
    display: flex;
    gap: 100px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-info { flex: 1; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; color: var(--logo-blue); }

.contact-form {
    flex: 1.5;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form textarea, .contact-form select, .contact-form button {
    grid-column: 1 / -1;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 18px 25px;
    border: 1px solid var(--accent-silver);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    background: #fdfdfd;
    width: 100%;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--logo-red);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.contact-form button {
    background: var(--logo-red);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    /* text-transform removed */
    letter-spacing: 2px;
    width: 100%;
}

.contact-form button:hover {
    background: var(--logo-blue);
    transform: scale(1.02);
}

/* --- MEGA FOOTER --- */
.main-footer {
    background: var(--logo-red);
    color: white;
    padding: 80px 0 0 0;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-logo {
    height: 90px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: white !important; text-decoration: none; opacity: 0.8; font-size: 0.9rem; transition: 0.3s; }
.footer-col ul li a:hover { opacity: 1; padding-left: 8px; }

/* ADMIN LOGIN BUTTON FIX */
.footer-col ul li a.admin-login-btn {
    display: inline-block;
    background: white !important;
    color: var(--logo-blue) !important;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    opacity: 1 !important;
    /* text-transform removed */
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 5%;
    background: rgba(0,0,0,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    font-size: 0.85rem;
}

/* --- FLOATING CONTACT --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition-premium);
    text-decoration: none;
}

.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--logo-blue); }

.floating-contact a:hover {
    transform: translateY(-10px) scale(1.1);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    font-size: 1rem;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-links a.facebook { color: #1877F2 !important; }
.social-links a.linkedin { color: #0A66C2 !important; }
.social-links a.twitter { color: #1DA1F2 !important; }
.social-links a.whatsapp { color: #25D366 !important; }

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* --- ADMIN DASHBOARD STYLES --- */
.admin-header {
    background: var(--logo-blue);
    color: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 1.5rem;
    margin: 0;
}

.dashboard-container {
    padding: 40px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}

.stat-card h4 {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin-bottom: 10px;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--logo-red);
}

.data-table-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--accent-silver);
}

.data-table th {
    font-weight: 600;
    color: var(--logo-blue);
}

/* --- INTERNAL PAGE STYLES --- */
.page-header {
    background: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1rem;
    /* text-transform removed */
    letter-spacing: 4px;
    opacity: 0.9;
}

.content-page {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 50px;
}

.content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--logo-blue);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-silver);
    padding-bottom: 15px;
}

.content-card p {
    color: var(--medium-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* RESPONSIVE DESIGN */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--logo-blue);
    cursor: pointer;
}

@media (max-width: 1100px) {
    /* NAVIGATION */
    .mobile-menu-btn { display: block; order: 3; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px;
        transition: 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 3000;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links.active { right: 0; }
    .dropdown-content { position: static; box-shadow: none; padding-left: 20px; display: block; border-top: none; }
    .dropdown i { display: none; }

    /* HERO */
    .hero { height: auto; padding: 150px 5% 80px 5%; text-align: center; justify-content: center; }
    .hero-bg { animation: none; }
    .hero p { margin: 20px auto 40px auto; }

    /* LAYOUTS */
    .process-container, .craft-banner, .contact-container { flex-direction: column; gap: 50px; }
    .process-image, .craft-image { width: 100%; height: 350px; }
    .craft-image { order: -1; box-shadow: 20px 20px 0 var(--logo-red); }
    .section-title h2 { font-size: 2.5rem; }
    
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-title h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .stat-number { font-size: 2.5rem; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
    .top-bar { display: none; }
    
    .page-header h1 { font-size: 2.5rem; }
    .content-card { padding: 30px; }
    .contact-form { padding: 30px; }
    .contact-form form { grid-template-columns: 1fr; }
    
    .products-grid { grid-template-columns: 1fr; }
    .leather-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .content-card h2 { font-size: 1.6rem; }
}
