:root {
    --primary-color: #6a0d2f;
    /* Deep Burgundy */
    --primary-dark: #4a051d;
    --accent-color: #d68c28;
    /* Gold */
    --text-color: #2c2c2c;
    --light-text: #f4f4f4;
    --background-color: #fff;
    --light-bg: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--background-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.9rem;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b5751e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(214, 140, 40, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 140, 40, 0.6);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(106, 13, 47, 0.3);
}

.btn-sm:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(106, 13, 47, 0.4);
}

/* Glass Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    /* More transparent */
    backdrop-filter: blur(12px);
    /* Glass effect */
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
}

.nav a {
    margin-left: 35px;
    font-weight: 500;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav .btn-contact {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(106, 13, 47, 0.2);
}

.nav .btn-contact:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.nav .btn-contact::after {
    display: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Modern Hero */
/* Modern Hero */
.hero {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    background-image: url('img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content vertically and horizontally */
    color: #fff;
    padding: 0;
    margin: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(106, 13, 47, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 60px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Features - Glass Cards */
.features {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

/* Products Modern */
.products {
    padding: 140px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 380px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.product-img {
    height: 400px;
    background: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.product-img::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    filter: blur(40px);
}

.product-img img {
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    transition: var(--transition);
    z-index: 1;
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.2));
}

.product-card:hover .product-img img {
    transform: scale(1.08) rotate(3deg);
}

.product-info {
    padding: 35px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-specs {
    margin: 25px 0;
    color: #666;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-specs li {
    background: #f4f4f4;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Contact Modern */
.contact {
    padding: 140px 0;
    background: url('img/hero.png') no-repeat center center/cover;
    position: relative;
    color: #fff;
    background-attachment: fixed;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 5, 29, 0.92);
    /* Heavy overlay */
}

.contact-wrapper {
    position: relative;
    z-index: 1;
}

.contact-content {
    background: rgba(255, 255, 255, 0.05);
    /* Glass card */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 50px;
    border-radius: 30px;
    /*max-width: 1000px;*/
    margin: 0 auto;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-item {
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    background: #fff;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container {
    display: flex;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: #111;
    color: #777;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer p {
    font-size: 0.9rem;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    margin: 0 15px;
    font-size: 1.3rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Left side as requested */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .nav.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .nav a {
        margin: 10px 0;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features {
        margin-top: 0;
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .btn {
        padding: 10px 15px;
    }

    .contact-details {
        flex-direction: column;
        gap: 40px;
    }

    .contact {
        padding: 30px 0;
        /* Reduced padding for mobile */
    }

    .contact-content {
        padding: 0;
        background: none;
        border: none;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 20px;
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-white {
    color: #fff;
}