/* Variables */
:root {
    --primary-color: #88b744;
    --dark-green: #023a15;
    --orange: #e79a3d;
    --light-green: #85a83a;
    --dark: #050b0e;
    --gray: #f5f5f5;
    --white: #ffffff;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background: linear-gradient(to bottom, #f8fbf3, #ffffff);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Layout */
.page-container {
    position: relative;
    overflow: hidden;
}

.whitefont {
    color: white;
}

section {
    padding: 4rem 0;
    position: relative;
}

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

.section-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header h3 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.section-header p {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #6aa125;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--dark-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #034b1d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
}

.btn-accent {
    background-color: #e79a3d;
    color: white;
    border: none;
    padding: 1.2rem 2.4rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-accent:hover {
    background-color: #85a83a;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Video Header */
.video-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(2, 58, 21, 0.8), rgba(5, 11, 14, 0.75));
    z-index: 5;
}

/* Top Bar */
.top-bar {
    position: relative;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.8rem 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(243, 149, 24, 0.3);
}

.top-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.contact-quick-info {
    display: flex;
    gap: 2rem;
}

.contact-quick-info a, 
.contact-quick-info span {
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.contact-quick-info a:hover {
    color: #e79a3d;
}

.contact-quick-info i {
    color: #e79a3d;
    font-size: 1.4rem;
}

.social-quick-links {
    display: flex;
    gap: 1.5rem;
}

.social-quick-links a {
    color: #fff;
    background-color: rgba(243, 149, 24, 0.2);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.social-quick-links a:hover {
    background-color: #e79a3d;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Navbar migliorata */
/* Stili base per la navbar */
.main-navbar {
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(2, 58, 21, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Classe aggiunta allo scroll */
.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 0;
    background-color: rgba(2, 58, 21, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease forwards;
}

/* Animazione di entrata per la navbar */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adattamenti per la navbar sticky */
.navbar-sticky .logo img {
    height: 5rem; /* Logo leggermente più piccolo */
}

.navbar-sticky .nav-links a {
    padding: 0.8rem 0; /* Spazio verticale ridotto */
}

.navbar-sticky .navbar-container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Adattamenti per mobile */
@media (max-width: 992px) {
    .navbar-sticky {
        padding: 0.5rem 0;
    }
    
    .navbar-sticky .logo img {
        height: 4.5rem;
    }
}

.navbar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
}

.logo img {
    height: 6rem;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 1rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-links a i {
    color: #e79a3d;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #e79a3d;
}

.nav-links a:hover i {
    transform: translateY(-3px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e79a3d;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: rgba(2, 58, 21, 0.95);
    border-radius: 0 0 8px 8px;
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-top: 3px solid #e79a3d;
    z-index: 2;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 2rem;
}

.dropdown-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
    width: 100%;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a i {
    width: 2rem;
    text-align: center;
}

.dropdown .fa-chevron-down {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    font-size: 2rem;
    color: #e79a3d;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-phone:hover {
    color: white;
    background-color: #e79a3d;
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 8px 15px rgba(243, 149, 24, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #e79a3d;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Content al Centro */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 1000px;
    padding-top: 2rem;
    z-index: 10;
}

.hero-logo {
    margin-bottom: 3rem;
    position: relative;
    z-index: 11;
}

.big-logo {
    max-width: 100%;
    height: auto;
    max-height: 260px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.hero-tagline {
    color: white;
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Categories Section */
.categories-section {
    position: relative;
    padding: 10rem 0;
    background: linear-gradient(135deg, rgba(245, 248, 240, 0.85), rgba(232, 240, 221, 0.85));
    background-image: url(img/sfondo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1.0;
    background-color: rgba(255, 255, 255, 0.9);
}

.categories-section .section-header, 
.categories-section .category-cards {
    position: relative;
    z-index: 1;
}

.categories-section .section-header h2,
.categories-section .section-header h3,
.categories-section .section-header p {
    position: relative;
    z-index: 2;
}

.made-in-italy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1;
    border-radius: var(--border-radius);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-green));
    clip-path: circle(0% at 50% 0);
    transition: all 0.5s ease-in-out;
    z-index: -1;
}

.category-card:hover::before {
    clip-path: circle(150% at 50% 0);
}

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

.category-card:hover h4,
.category-card:hover p,
.category-card:hover .category-icon {
    color: var(--white);
}

.category-card:hover .category-link {
    color: var(--white);
    border-color: var(--white);
}

.category-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.category-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.category-card p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.category-link {
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.3rem;
    transition: var(--transition);
}

.bestseller::after {
    content: 'Bestseller';
    position: absolute;
    top: 1.5rem;
    right: -3rem;
    background-color: var(--orange);
    color: var(--white);
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 2;
}

/* Promo Section */
.promo-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #f0f7e6, #e8f0dd);
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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='%2388b744' fill-opacity='0.1'%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");
    z-index: 0;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    min-height: 25rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.facebook-promo {
    background: linear-gradient(135deg, #3b5998, #1877f2);
    color: var(--white);
}

.visit-promo {
    background: linear-gradient(135deg, var(--dark-green), var(--light-green));
    color: var(--white);
}

/* Guides Section */
.guides-section {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 248, 240, 0.85), rgba(232, 240, 221, 0.85));
    background-image: url(img/sfondo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

}

.guides-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1.0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.guides-section .section-header, 
.guides-section .category-cards, .guides-grid {
    position: relative;
    z-index: 1;
}

.guides-section .section-header h2, 
.guides-section .section-header h3,
.guides-section .section-header p {
    position: relative;
    z-index: 2;
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.guide-card {
    background: linear-gradient(to bottom right, #ffffff, #f7faf2);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.guide-image {
    height: 20rem;
    background-size: cover;
    background-position: center;
    position: relative;
}

.guide-card:nth-child(1) .guide-image {
    background-image: url('https://source.unsplash.com/random/600x400/?seeds,planting');
}

.guide-card:nth-child(2) .guide-image {
    background-image: url('https://source.unsplash.com/random/600x400/?lawn,grass');
}

.guide-card:nth-child(3) .guide-image {
    background-image: url('https://source.unsplash.com/random/600x400/?safety,equipment');
}

.guide-card:nth-child(4) .guide-image {
    background-image: url('https://source.unsplash.com/random/600x400/?dog,food');
}

.guide-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.guide-content {
    padding: 2rem;
}

.guide-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.guide-content p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.guide-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-link:hover {
    text-decoration: underline;
}

.guides-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom right, #ffffff, #f7faf2);
    background-image: url('https://img.freepik.com/foto-gratuito/il-rendering-3d-di-erba-verde-su-sfondo-defocussed_1048-4896.jpg');
    background-size: cover;
    background-position: center;
}

.guides-cta h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.guides-cta p {
    margin-bottom: 2.5rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

    /* Sfondi diversi per ogni guide card */
    .guide-card .guide-image {
        height: 180px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 2rem;
        position: relative;
    }
    
    /* Sfondo per guide card Agricoltura */
    .guide-card:nth-child(1) .guide-image {
        background-image: url('img/semina.jpg');
    }
    
    /* Sfondo per guide card Giardinaggio */
    .guide-card:nth-child(2) .guide-image {
        background-image: url('img/prato.jpg');
    }
    
    /* Sfondo per guide card Antinfortunistica */
    .guide-card:nth-child(3) .guide-image {
        background-image: url('img/anti.jpg');
    }
    
    /* Sfondo per guide card Animali */
    .guide-card:nth-child(4) .guide-image {
        background-image: url('img/cane.jpg');
    }
    
    /* Stile per category tag */
    .guide-category {
        background-color: rgb(0 0 0 / 49%);
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        color: #ffffff;
        font-weight: 600;
        font-size: 1.2rem;
        position: relative;
        z-index: 1;
    }

/* Seasonal Section */
.seasonal-section {
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.seasonal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://source.unsplash.com/random/1920x1080/?season,garden');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.seasonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 58, 21, 0.9), rgba(5, 11, 14, 0.85));
}

.seasonal-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--orange);
}

.section-header.light h2::after {
    background-color: var(--orange);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.9);
}

.seasonal-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 5rem 0;
}

.seasonal-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.seasonal-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--orange);
    margin-bottom: 2rem;
}

.seasonal-card h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.seasonal-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.card-link {
    color: var(--orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--white);
    gap: 1.2rem;
}

.calendar-cta {
    background: rgba(243, 149, 24, 0.2);
    border-radius: var(--border-radius);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
    border: 1px solid rgba(243, 149, 24, 0.3);
    position: relative;
    overflow: hidden;
}

.calendar-content {
    width: 70%;
}

.calendar-content h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.calendar-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.calendar-icon {
    font-size: 12rem;
    color: rgba(243, 149, 24, 0.3);
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #f7faf2, #edf5e1);
    position: relative;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%2388b744' fill-opacity='0.08' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    z-index: 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.location-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 45rem;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff, #f7faf2);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-card h4 i {
    font-size: 2.2rem;
}

.info-card p {
    margin-bottom: 1rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card a:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    background-color: #f9fbf6;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-color: rgba(120, 184, 42, 0.1);
    border-radius: 0 0 0 100%;
    z-index: -1;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info h3 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    color: var(--dark-green);
}

.contact-info p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #555;
    max-width: 90%;
}

.call-us {
    margin: 4rem 0;
    background-color: rgba(120, 184, 42, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.call-us:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.call-us h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-us h4::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 2rem;
}

.phone-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--dark-green);
    transform: scale(1.05);
}

.social-follow {
    background-color: rgba(2, 58, 21, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-follow h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-follow h4::before {
    content: '\f082';
    font-family: 'Font Awesome 5 Brands';
    color: var(--primary-color);
    font-size: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--dark-green);
    font-size: 2.2rem;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.8);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(120, 184, 42, 0.3);
}

.contact-form {
    background: linear-gradient(135deg, #ffffff, #f7faf2);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.contact-form h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1.6rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(120, 184, 42, 0.2);
}

.form-group textarea {
    height: 15rem;
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 8rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-size: cover;
    background-position: center;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-logo h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-col h4 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 1.2rem;
}

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.opening-hours {
    margin-top: 3rem;
}

.opening-hours h5 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.opening-hours p {
    margin-bottom: 0.5rem;
    color: #aaa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.footer-bottom p {
    margin-bottom: 0;
    color: #aaa;
    font-size: 1.4rem;
}

.cookie-consent {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-consent p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

