/* ===== CSS Variables ===== */
:root {
    --burgundy: #722F37;
    --burgundy-dark: #5a252c;
    --burgundy-light: #8B3A42;
    --gold: #C5A059;
    --gold-light: #D4B76A;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D4;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --white: #FFFFFF;
    --shadow: rgba(0,0,0,0.1);
    --transition: 0.3s ease;
    --border-radius: 0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
}

a {
    text-decoration: none;
}

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

/* ===== Utility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== Logo Images ===== */
.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

/* ===== Navigation ===== */
.navbar {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.nav-logo i {
    font-size: 2rem;
    color: var(--gold);
}

.nav-logo-text {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-logo-text span {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: 1.5rem 1.5rem;
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== Main Layout ===== */
main {
    padding-top: 80px;
    min-height: 100vh;
    animation: fadeIn 0.5s ease;
}

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

/* ===== Quick Contact Bar ===== */
.quick-contact {
    background: var(--burgundy-dark);
    color: var(--white);
    padding: 0.75rem 2rem;
    text-align: center;
    font-size: 0.95rem;
}

.quick-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.quick-contact a:hover {
    text-decoration: underline;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.95) 0%, rgba(44, 44, 44, 0.9) 100%),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-sans);
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-block {
    width: 100%;
}

/* ===== Sections ===== */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--burgundy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-header p {
    color: var(--charcoal-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Cards Grid ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ===== Service Cards ===== */
.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all var(--transition);
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card:focus-within {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.service-icon {
    font-size: 3rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.service-card h3 {
    color: var(--burgundy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--charcoal-light);
    line-height: 1.8;
    flex-grow: 1;
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--white);
    padding: 5rem 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--cream);
    padding: 2rem;
    position: relative;
    font-style: italic;
    color: var(--charcoal-light);
    border-radius: 4px;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: var(--font-serif);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 700;
    color: var(--burgundy);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.cta-section .btn:hover {
    background: transparent;
    color: var(--white);
}

/* ===== Page Heroes ===== */
.about-hero,
.products-hero,
.services-hero,
.contact-hero {
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.9) 0%, rgba(44, 44, 44, 0.85) 100%),
                url('https://images.unsplash.com/photo-1519834785169-98be25ec3f84?w=1920') center/cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.about-hero h1,
.products-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-hero p,
.products-hero p,
.services-hero p,
.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* ===== About Content ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-text h3 {
    color: var(--burgundy);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--gold);
    z-index: -1;
}

/* ===== Values Grid ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}
.values-section {background: var(--white);
padding: 5rem 2rem }

/* ===== Service Detail ===== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even)>* {
    direction: ltr;
}

.service-detail-img {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-detail:hover .service-detail-img img {
    transform: scale(1.05);
}

.service-detail-content h3 {
    color: var(--burgundy);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--charcoal-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ===== Products ===== */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-tab {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.product-tab:hover,
.product-tab.active {
    background: var(--burgundy);
    color: var(--white);
}

.product-tab:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.product-category {
    display: none;
}

.product-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all var(--transition);
    border-radius: 4px;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover img {
    transform: scale(1.03);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    color: var(--burgundy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--charcoal-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
}

.product-price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

/* ===== Contact ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-info h3 {
    color: var(--burgundy);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}

.contact-item div strong {
    color: var(--burgundy);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item div p {
    color: var(--charcoal-light);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--burgundy);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream-dark);
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    transition: border-color var(--transition);
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

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

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 350px;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-links a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== Map Container ===== */
.map-container {
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-content,
    .service-detail,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--burgundy-dark);
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .service-detail {
        padding: 2rem 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .quick-contact {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .quick-contact br {
        display: none;
    }

    .product-tabs {
        gap: 0.5rem;
    }

    .product-tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .nav-logo-text {
        font-size: 1.1rem;
    }

    .nav-logo-text span {
        font-size: 0.6rem;
    }

    .nav-logo i {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .service-card {
        padding: 2rem 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .quick-contact,
    .footer {
        display: none;
    }

    main {
        padding-top: 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
        background: var(--burgundy);
    }

    .btn {
        display: none;
    }
}
