/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50; /* Enhanced dark color for better readability */
    background-color: #F4F5F0; /* Italian White */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.4rem;
    letter-spacing: -0.015em;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.nav-logo h2 {
    color: #008C45; /* Italian Green */
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #CD212A; /* Italian Red */
    background-color: rgba(205, 33, 42, 0.08);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #CD212A;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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


.bar {
    width: 25px;
    height: 3px;
    background-color: #CD212A; /* Italian Red for visibility */
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
@media screen and (max-width: 768px) {
    .bar {
        display: block;
        background-color: #CD212A; /* Italian Red for visibility */
    }
    
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #CD212A 0%, #B01C25 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(205, 33, 42, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B01C25 0%, #9A1820 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 33, 42, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #008C45; /* Italian Green */
    border: 2px solid #008C45;
    box-shadow: 0 4px 15px rgba(0, 140, 69, 0.2);
}

.btn-secondary:hover {
    background-color: #008C45; /* Italian Green */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 140, 69, 0.3);
}

.btn-full {
    width: 100%;
}

.nav-logo{
    display: flex;
    height: 100%;
    margin-top: 0%;
}
.nav-logo img {
    width: 6rem;
    height: auto;
    margin-top: 0px;
}   

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #008C45 0%, #CD212A 100%); /* Green to Red gradient */
    color: #ffffff;
    padding: 140px 0 100px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #F4F5F0; /* Italian White */
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #F4F5F0; /* Italian White */
    opacity: 0.9;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Page Titles */
.page-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #CD212A; /* Italian Red */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #008C45, #CD212A);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 140, 69, 0.3), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 140, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #008C45, #CD212A);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 140, 69, 0.15);
    border-color: rgba(0, 140, 69, 0.2);
}

.feature-icon {
    color: #CD212A; /* Italian Red */
    margin-bottom: 2rem;
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Quick Links Section */
.quick-links {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.quick-link-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #008C45; /* Italian Green */
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* .quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #008C45, #CD212A);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} */

.quick-link-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.quick-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 140, 69, 0.15);
    border-left-color: #CD212A;
}

.quick-link-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.quick-link-card p {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.link-arrow {
    color: #008C45; /* Italian Green */
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    color: #CD212A;
    transform: translateX(5px);
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background-color: #ffffff;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.company-story {
    padding: 80px 0;
    background-color: #F4F5F0; /* Italian White */
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #283635; /* Dark text */
    margin-bottom: 2rem;
}

.story-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background-color: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 15px;
    background-color: #F4F5F0; /* Italian White */
}

.mv-icon {
    color: #CD212A; /* Italian Red */
    margin-bottom: 2rem;
}

.mv-card h3 {
    color: #283635; /* Dark text */
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #666;
}

.values {
    padding: 80px 0;
    background-color: #F4F5F0; /* Italian White */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
}

.team {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background-color: #F4F5F0; /* Italian White */
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #008C45; /* Italian Green */
}

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

.team-member h4 {
    color: #283635; /* Dark text */
    margin-bottom: 0.5rem;
}

.member-role {
    color: #CD212A; /* Italian Red */
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
}

/* Products Page Styles */
.products-hero {
    padding: 120px 0 60px;
    background-color: #ffffff;
    text-align: center;
}

.filter-section {
    padding: 40px 0;
    background-color: #F4F5F0; /* Italian White */
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #283635; /* Dark text */
    background-color: transparent;
    color: #283635; /* Dark text */
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #008C45; /* Italian Green */
    color: #ffffff;
    border-color: #008C45;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.8rem 1rem;
    border: 2px solid #CD212A; /* Italian Red */
    border-radius: 8px;
    background-color: #ffffff;
    color: #283635; /* Dark text */
    font-size: 1rem;
    cursor: pointer;
}
.featured-products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* exactly 3 columns */
    gap: 2rem;
}
.products-grid {
    padding: 60px 0;
    background-color: #ffffff;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #F4F5F0; /* Italian White */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 140, 69, 0.8); /* Italian Green with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #283635; /* Dark text */
    margin-bottom: 0.5rem;
}

.product-category {
    color: #CD212A; /* Italian Red */
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #283635; /* Dark text */
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
}

/* Services Page Styles */
.services-hero {
    padding: 120px 0 60px;
    background-color: #ffffff;
    text-align: center;
}

.services-grid {
    padding: 60px 0;
    background-color: #F4F5F0; /* Italian White */
}

.services-container {
    display: grid;
    gap: 3rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    color: #CD212A; /* Italian Red */
}

.service-content h3 {
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    color: #008C45; /* Italian Green */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #283635; /* Dark text */
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #008C45; /* Italian Green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
}

.testimonials {
    padding: 80px 0;
    background-color: #F4F5F0; /* Italian White */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    color: #283635; /* Dark text */
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #CD212A; /* Italian Red */
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background-color: #ffffff;
    text-align: center;
}

.contact-form-section {
    padding: 60px 0;
    background-color: #F4F5F0; /* Italian White */
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #283635; /* Dark text */
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #283635; /* Dark text */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #CD212A; /* Italian Red */
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #008C45; /* Italian Green */
    box-shadow: 0 0 0 3px rgba(0, 140, 69, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: #008C45; /* Italian Green */
    text-decoration: underline;
}

.contact-info {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #283635; /* Dark text */
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #F4F5F0; /* Italian White */
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    color: #CD212A; /* Italian Red */
    flex-shrink: 0;
}

.contact-details h4 {
    color: #283635; /* Dark text */
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
}

.social-links {
    margin-top: 2rem;
    text-align: center;
}

.social-links h4 {
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #F4F5F0; /* Italian White */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #283635; /* Dark text */
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #CD212A; /* Italian Red */
    color: #ffffff;
    transform: translateY(-2px);
}

.map-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.map-container {
    margin: 3rem 0;
}

.map-placeholder {
    background-color: #F4F5F0; /* Italian White */
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #CD212A; /* Italian Red */
}

.map-content {
    text-align: center;
}

.map-icon {
    color: #008C45; /* Italian Green */
    margin-bottom: 1rem;
}

.map-content h3 {
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    margin-bottom: 2rem;
}

.showroom-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.showroom-details {
    background-color: #F4F5F0; /* Italian White */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.showroom-details h4 {
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.showroom-details p {
    color: #666;
}

.faq-section {
    padding: 60px 0;
    background-color: #F4F5F0; /* Italian White */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F4F5F0; /* Italian White */
}

.faq-question h4 {
    color: #283635; /* Dark text */
    margin: 0;
}

.faq-toggle {
    color: #008C45; /* Italian Green */
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #CD212A 0%, #008C45 100%); /* Red to Green gradient */
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    color: #F4F5F0; /* Italian White */
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #283635; /* Dark text */
    color: #F4F5F0; /* Italian White */
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #F4F5F0; /* Italian White */
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #CD212A; /* Italian Red */
}

.footer-bottom {
    border-top: 1px solid #008C45; /* Italian Green */
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .quick-links-grid,
    .products-container {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .contact-info {
        padding: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.quick-link-card,
.product-card,
.service-card,
.team-member {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #008C45; /* Italian Green */
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}


/* Blog Page Styles */
.blog-hero {
    padding: 120px 0 60px;
    background-color: #ffffff;
    text-align: center;
}

/* Featured Post Section */
.featured-post {
    padding: 60px 0;
    background-color: #F4F5F0; /* Italian White */
}

.featured-post-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-post-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-post-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.featured-badge {
    background-color: #CD212A; /* Italian Red */
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-post-content {
    padding: 2rem 0;
}

.featured-post-title {
    color: #283635; /* Dark text */
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-post-excerpt {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Blog Filter Section */
.blog-filter {
    padding: 40px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: #F4F5F0; /* Italian White */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.read-time {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    color: #CD212A; /* Italian Red */
    font-weight: 600;
}

.post-date {
    color: #666;
}

.blog-card-title {
    color: #283635; /* Dark text */
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-link {
    color: #008C45; /* Italian Green */
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #007A3D; /* Darker Green */
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background-color: #008C45; /* Italian Green */
    color: #ffffff;
    text-align: center;
}

.newsletter-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: #F4F5F0; /* Italian White */
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Blog Post Page Styles */
.blog-post-header {
    padding: 120px 0 40px;
    background-color: #ffffff;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumb a {
    color: #008C45; /* Italian Green */
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.blog-post-title {
    font-size: 3rem;
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    color: #283635; /* Dark text */
    margin-bottom: 0.25rem;
}

.author-details p {
    color: #CD212A; /* Italian Red */
    font-size: 0.9rem;
    margin: 0;
}

.blog-post-featured-image {
    padding: 40px 0;
    background-color: #F4F5F0; /* Italian White */
}

.blog-post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-article {
    max-width: none;
}

.blog-article .lead-paragraph {
    font-size: 1.3rem;
    color: #283635; /* Dark text */
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-article h2 {
    color: #283635; /* Dark text */
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.blog-article h3 {
    color: #283635; /* Dark text */
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-article p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-article ul,
.blog-article ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-article blockquote {
    background-color: #F4F5F0; /* Italian White */
    border-left: 4px solid #008C45; /* Italian Green */
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.blog-article blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #283635; /* Dark text */
    margin-bottom: 1rem;
}

.blog-article blockquote cite {
    color: #CD212A; /* Italian Red */
    font-weight: 600;
    font-style: normal;
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background-color: #F4F5F0; /* Italian White */
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #283635; /* Dark text */
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.related-post-content h4 {
    color: #283635; /* Dark text */
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-post-date {
    color: #666;
    font-size: 0.8rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: #283635; /* Dark text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #008C45; /* Italian Green */
}

.category-list span {
    color: #666;
    font-size: 0.9rem;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 0.8rem;
    border: 2px solid #CD212A; /* Italian Red */
    border-radius: 8px;
    font-size: 0.9rem;
}

.sidebar-newsletter input:focus {
    outline: none;
    border-color: #008C45; /* Italian Green */
}

/* Comments Section */
.blog-comments {
    padding: 60px 0;
    background-color: #F4F5F0; /* Italian White */
}

.blog-comments h2 {
    color: #283635; /* Dark text */
    margin-bottom: 2rem;
    text-align: center;
}

.comment-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .featured-post-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-post-title {
        font-size: 1.8rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        padding-left: 0;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/* Blog Preview Section Styles */
.blog-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-preview-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-preview-header .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 15px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-preview-image {
    height: 200px;
    overflow: hidden;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-preview-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-preview-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-read-more {
    color: #dc3545;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #c82333;
}

@media (max-width: 768px) {
    .blog-preview {
        padding: 60px 0;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-preview-header {
        margin-bottom: 40px;
    }
}


/* Product Details Page Styles */
.product-details {
    padding: 40px 0 80px;
    background-color: #f8f9fa;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #dc3545;
    transform: translateY(-2px);
}

.breadcrumb {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #dc3545;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffc107;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
}

.original-price {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount {
    background-color: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #495057;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option:hover,
.color-option.active {
    border-color: #dc3545;
    transform: scale(1.1);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 40px;
    height: 40px;
    border: 2px solid #dc3545;
    background-color: white;
    color: #dc3545;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background-color: #dc3545;
    color: white;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #dc3545;
    border-radius: 5px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #dc3545;
    color: white;
}

.product-info-tabs {
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    color: #dc3545;
    border-bottom-color: #dc3545;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

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

.specs-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}

.related-products {
    padding: 80px 0;
    background-color: white;
}

@media (max-width: 768px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-images {
        position: static;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .product-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 15px;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .product-actions .btn {
        margin-bottom: 10px;
    }
}


/* Contact Page Enhancements */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for 2 rows */
        gap: 3rem;
        padding: 4rem 3rem;
    }
}

.contact-info-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #008C45 0%, #CD212A 100%);
    border-radius: 2px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover::before {
    opacity: 1;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008C45 0%, #CD212A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(205, 33, 42, 0.3);
}

.contact-info-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-item .contact-note {
    font-size: 0.9rem;
    color: #008C45;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #008C45 0%, #CD212A 100%);
    color: #ffffff;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #f4f5f0;
}
.contact-hero .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #ffffff;
    color: #008C45;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-hero .btn:hover {
    background-color: #f4f5f0;
    color: #cd212a;
} 
.contact-hero .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(205, 33, 42, 0.5);
}

/* Contact Form Styles */
.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}
.contact-form h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}
.contact-form p {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form .form-group label {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #008C45; /* Italian Green */
    outline: none;
}
.contact-form .form-group textarea {
    height: 150px;
    resize: vertical;
}
.contact-form .btn-submit {
    background-color: #008C45; /* Italian Green */
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form .btn-submit:hover {
    background-color: #006f3c; /* Darker Green */
}
.contact-form .btn-submit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 140, 69, 0.5);
}