/* style.css - Azalea Flowershop */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FFFBF5;
    --beige: #F7EFE5;
    --soft-green: #E1F0DA;
    --blush: #FFD1DA;
    --dark-green: #2C5530;
    --medium-green: #5A8C5A;
    --light-green: #8FBC8F;
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #777777;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--medium-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 85, 48, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--medium-green);
    border: 2px solid var(--medium-green);
}

.btn-secondary:hover {
    background-color: var(--medium-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-instagram {
    background-color: #E4405F;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-instagram:hover {
    background-color: #C13584;
    transform: translateY(-3px);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--medium-green);
    margin-top: 2px;
    font-style: italic;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 95px;
}

.nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--medium-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--medium-green);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 18px;
    color: var(--medium-green);
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--dark-green);
    transform: translateY(-2px);
}

.language-switcher {
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.lang-toggle:hover {
    background-color: var(--beige);
}

.lang-code {
    padding: 2px 5px;
    border-radius: 3px;
    transition: var(--transition);
}

.lang-code.active {
    background-color: var(--medium-green);
    color: var(--white);
}

.lang-separator {
    color: var(--text-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark-green);
    border-radius: 3px;
    transition: var(--transition);
}

/* Language Overlay */
.language-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.language-modal {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.language-modal h2 {
    color: var(--dark-green);
    margin-bottom: 30px;
    font-size: 24px;
}

.language-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.lang-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--medium-green);
    background-color: transparent;
    color: var(--medium-green);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--medium-green);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 251, 245, 0.8)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%235A8C5A" fill-opacity="0.05" d="M50,0C22.4,0,0,22.4,0,50s22.4,50,50,50s50-22.4,50-50S77.6,0,50,0z M50,85c-19.3,0-35-15.7-35-35s15.7-35,35-35 s35,15.7,35,35S69.3,85,50,85z"/></svg>');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--medium-green);
    font-weight: 500;
}

.hero-scroll i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--medium-green);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--beige);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--medium-green);
    font-size: 18px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-image i {
    font-size: 80px;
    margin-bottom: 20px;
}

.about-story {
    margin-bottom: 40px;
}

.about-story h3 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.about-story p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.value-card {
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--soft-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--medium-green);
    font-size: 24px;
}

.value-card h4 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Flower Care Section */
.care-section {
    background-color: var(--beige);
}

.care-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.care-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--soft-green);
}

.plants-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.plant-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plant-name {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--beige);
}

.plant-description {
    margin-bottom: 25px;
}

.plant-description p {
    margin-bottom: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.plant-details {
    background-color: var(--cream);
    padding: 20px;
    border-radius: 10px;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: var(--medium-green);
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-value {
    color: var(--text-medium);
    flex: 1;
}

.care-tips {
    margin-top: 80px;
    padding: 50px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.tips-title {
    font-size: 28px;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 40px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    padding: 25px;
    background-color: var(--cream);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background-color: var(--soft-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--medium-green);
    font-size: 30px;
}

.tip-card h4 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Blog Section */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-category-btn {
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--medium-green);
    color: var(--medium-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blog-category-btn.active,
.blog-category-btn:hover {
    background-color: var(--medium-green);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image .image-placeholder {
    height: 220px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--medium-green);
    font-size: 16px;
}

.blog-image i {
    font-size: 60px;
    margin-bottom: 15px;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-read-btn {
    padding: 10px 25px;
    background-color: var(--soft-green);
    color: var(--medium-green);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.blog-read-btn:hover {
    background-color: var(--medium-green);
    color: var(--white);
}

.blog-load-more {
    text-align: center;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 25px;
    background-color: transparent;
    border: 2px solid var(--medium-green);
    color: var(--medium-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
    background-color: var(--medium-green);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image .image-placeholder {
    height: 250px;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--medium-green);
    font-size: 16px;
}

.gallery-image i {
    font-size: 70px;
    margin-bottom: 15px;
}

.gallery-content {
    padding: 25px;
}

.gallery-item-title {
    font-size: 22px;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.gallery-item-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.gallery-load-more {
    text-align: center;
}

/* Community Section */
.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.community-text h3 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.community-text p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.community-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: var(--medium-green);
    background-color: var(--soft-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 0;
}

.community-action {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.action-card {
    padding: 35px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
}

.action-icon {
    width: 80px;
    height: 80px;
    background-color: var(--soft-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--medium-green);
    font-size: 36px;
}

.action-card h3 {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.action-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--soft-green);
}

.newsletter-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-title {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.newsletter-subtitle {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.newsletter-form {
    margin-top: 30px;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--beige);
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--medium-green);
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
}

.form-message.success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message.error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.form-agreement input[type="checkbox"] {
    margin-top: 5px;
}

.form-agreement label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.newsletter-image .image-placeholder {
    height: 300px;
    background-color: var(--beige);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--medium-green);
    font-size: 18px;
}

.newsletter-image i {
    font-size: 100px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--soft-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--medium-green);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-medium);
    margin-bottom: 5px;
}

.phone-link,
.email-link {
    color: var(--medium-green);
    font-weight: 600;
    transition: var(--transition);
}

.phone-link:hover,
.email-link:hover {
    color: var(--dark-green);
}

.delivery-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-social h4 {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.facebook {
    color: #1877F2;
}

.contact-form-container h3 {
    font-size: 28px;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--medium-green);
}

.error-message {
    color: #E74C3C;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Footer */
.main-footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--medium-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    font-size: 18px;
    color: var(--medium-green);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
}

.footer-newsletter button {
    width: 45px;
    height: 45px;
    background-color: var(--medium-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--light-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-credits a {
    color: var(--medium-green);
    font-weight: 600;
    transition: var(--transition);
}

.footer-credits a:hover {
    color: var(--light-green);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(50px);
    transition: var(--transition);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--cream);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--medium-green);
    color: var(--white);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-image .image-placeholder {
    height: 100%;
    min-height: 400px;
    background-color: var(--beige);
    border-radius: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--medium-green);
    font-size: 18px;
}

.modal-image i {
    font-size: 100px;
    margin-bottom: 20px;
}

.modal-text {
    padding: 40px 40px 40px 0;
}

.modal-text h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    color: var(--text-light);
}

.modal-category {
    background-color: var(--soft-green);
    color: var(--medium-green);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.modal-body {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-share h4 {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition);
}

.share-btn.facebook {
    background-color: #1877F2;
}

.share-btn.instagram {
    background-color: #E4405F;
}

.share-btn.twitter {
    background-color: #1DA1F2;
}

.share-btn:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .about-content,
    .community-content,
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: 0 10px 20px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    
    .nav-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content,
    .community-content,
    .contact-content,
    .modal-content,
    .newsletter-box {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .modal-image .image-placeholder {
        border-radius: 20px 20px 0 0;
        min-height: 300px;
    }
    
    .modal-text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .plants-container {
        grid-template-columns: 1fr;
    }
    
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories,
    .gallery-filters {
        gap: 10px;
    }
    
    .blog-category-btn,
    .gallery-filter {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        padding: 30px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .modal-container {
        max-height: 95vh;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .hero-section {
        min-height: 600px;
        padding: 80px 15px 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .plant-card,
    .blog-card,
    .gallery-item,
    .value-card,
    .tip-card,
    .action-card {
        padding: 20px;
    }
    
    .newsletter-box {
        padding: 20px;
    }
    
    .language-modal {
        padding: 30px 20px;
    }
    
    .language-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .lang-btn {
        padding: 12px 30px;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid var(--medium-green);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .main-header,
    .hero-buttons,
    .blog-read-btn,
    .btn-instagram,
    .newsletter-section,
    .contact-form,
    .footer-social,
    .footer-newsletter {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
    }
}
/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-image:hover {
    transform: rotate(10deg);
    border-color: var(--medium-green);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--medium-green);
    margin-top: 2px;
    font-style: italic;
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    
    .logo-image {
        width: 100px;
        height: auto;
    }
    
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo-image {
        width: 100px;
        height: auto;
    }
}.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}
/* Logo + Title container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px; /* hapsira midis logos dhe tekstit */
}

/* Logo image */
.logo {
  width: 350px; /* ndrysho sipas logos */
  height: auto;
}

/* Brand name */
.brand-name {
  font-size: 1.8rem; /* mund ta rrisësh ose zvogëlosh */
  font-weight: bold;
  color: #3a3a3a; /* ngjyra teksti */
}

/* Responsive: small screens */
@media (max-width: 768px) {
  .logo-container {
    justify-content: center;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .logo {
    width: 40px;
  }

  .main-nav ul {
    display: none; /* do të bëjmë toggle me menu mobile */
  }
}
/* Rregullime për navbar-in mobile */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-container {
        flex-direction: column;
        height: 100%;
        padding: 20px;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-list li {
        width: 100%;
        margin: 10px 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        font-size: 18px;
        border-radius: 8px;
        transition: background-color 0.3s;
    }
    
    .nav-link:hover {
        background-color: #f5f5f5;
    }
    
    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    .logo-link {
        text-decoration: none;
        display: inline-block;
    }
    
    .logo-link:hover {
        opacity: 0.8;
    }
    
    /* Overlay për background-in e errët */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Rregullim për "Rreth nesh" */
    .nav-normal {
        white-space: nowrap !important;
        word-break: keep-all !important;
    }
}

/* Rregullime për "Rreth nesh" në desktop dhe mobile */
.nav-link[data-key="nav_about"] {
    white-space: nowrap;
    word-break: keep-all;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Header styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 150px;
    width: auto;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e91e63; /* Ngjyrë rozë si për lule */
}

.language-switcher {
    margin-left: 10px;
}

.lang-toggle {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.lang-code.active {
    color: #ffffff;
}
/* Sigurohu që menu mobile të jetë e dukshme dhe të plotë */
@media (max-width: 768px) {
    .main-nav.active {
        right: 0; /* Shfaq menunë */
    }
    
    .nav-list {
        display: flex !important; /* Sigurohu që lista të shfaqet */
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-list li {
        width: 100%;
        margin: 10px 0;
        opacity: 1 !important; /* Sigurohu që të jetë e dukshme */
        visibility: visible !important;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        font-size: 18px;
        border-radius: 8px;
        text-align: left;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-right {
        display: flex !important; /* Sigurohu që social icons dhe language switcher të shfaqen */
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Sigurohu që asnjë element nuk fshihet në mobile */
@media (max-width: 768px) {
    .nav-list,
    .nav-list li,
    .nav-link,
    .nav-right,
    .social-icons,
    .language-switcher {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
/* ===== LOGO STYLES ===== */

/* Container i logos */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Hapësira midis logos dhe tekstit */
}

/* Logo imazhi - MADHËSIA KRYESORE KËTU */
.logo-image-emadhe {
    height: 150px; /* E bëra më të madhe - ishte 60px */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-link:hover .logo-image {
    transform: rotate(5deg) scale(1.05);
}

/* Teksti pranë logos */
.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 28px; /* E bëra më të madhe - ishte 24px */
    font-weight: 700;
    color: var(--dark-green);
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-subtitle {
    font-size: 13px; /* E bëra pak më të madhe */
    color: var(--medium-green);
    margin-top: 3px;
    font-style: italic;
    font-weight: 500;
}

/* ===== RESPONSIVE PËR LOGO ===== */

/* Tablet */
@media (max-width: 992px) {
    .logo-image {
        height: 70px; /* Pak më e vogël në tablet */
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    
    .logo-image {
        height: 60px; /* Madhësi e mirë për mobile */
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .logo-image {
        height: 150px; /* Madhësi minimale */
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Opsionale: Fshi tekstin në mobile shumë të vogël */
    @media (max-width: 400px) {
        .logo-text-container {
            display: none; /* Fshi tekstin në ekran shumë të vogël */
        }
        
        .logo-container {
            gap: 0;
        }
        
        .logo-image {
            height: 45px;
        }
    }
}

/* ===== OPSIONI 2: NËSE DO VETËM LOGO PA TEKST ===== */

/* Nëse do vetëm logo pa tekst, përdor këto stilime: */
.logo-image.standalone {
    height: 90px; /* Edhe më e madhe nëse është vetëm logo */
}

/* Nëse don të fshish tekstin plotësisht: */
/*
.logo-text-container {
    display: none;
}
*/

/* ===== STILIZIM SHTESË PËR LOGO ===== */

/* Efekt hover më i mirë */
.logo-link {
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--medium-green);
    transition: width 0.3s ease;
}

.logo-link:hover::after {
    width: 80%;
}

/* Animacion për logo kur hapet faqja */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    animation: logoFadeIn 0.8s ease-out;
}

/* ===== SHFAQJA E TITULLIT NË BROWSER ===== */

.btn-location {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-location:hover {
    text-decoration: none;
}
/* ===== NAVBAR PERFEKT NË MES ===== */

/* Container i navbar-it */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Të tre pjesët: majtas, mes, djathtas */
.nav-left,
.nav-list,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Social icons në të majtë */
.nav-left {
    justify-content: flex-start;
}

/* LISTA NË MES - KRYESORE */
.nav-list {
    justify-content: center;
    gap: 50px; /* Hapësirë e madhe midis link-eve */
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Link-et - SHUMË MË TË MËDHAJ */
.nav-link {
    font-weight: 700; /* E trashë */
    font-size: 18px; /* SHUMË MË E MADHE */
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px; /* Më e trashë */
    background-color: var(--medium-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--medium-green);
    transform: translateY(-2px); /* Efekt hover */
}

/* Language switcher në të djathtë */
.nav-right {
    justify-content: flex-end;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 22px; /* Më të mëdha */
    color: var(--medium-green);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--cream);
}

.social-icons a:hover {
    color: var(--white);
    background-color: var(--medium-green);
    transform: translateY(-3px);
}

/* Language switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--medium-green);
    font-size: 16px;
    font-weight: 700; /* Më i trashë */
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.lang-toggle:hover {
    background-color: var(--medium-green);
    color: var(--white);
}

.lang-code {
    padding: 3px 8px;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 700;
}

.lang-code.active {
    background-color: var(--medium-green);
    color: var(--white);
}

.lang-separator {
    color: var(--text-light);
    font-weight: 700;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1100px) {
    .nav-list {
        gap: 35px; /* Pak më pak hapësirë */
    }
    
    .nav-link {
        font-size: 17px;
    }
    
    .social-icons a {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
}

/* Mobile (hamburger menu) */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-left,
    .nav-list,
    .nav-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 20px; /* Edhe më e madhe në mobile */
        padding: 15px 0;
        display: block;
        width: 100%;
    }
    
    /* Hamburger menu (nëse e keni) */
    .hamburger {
        display: flex;
        position: absolute;
        top: 25px;
        right: 25px;
        z-index: 1001;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        transition: left 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
}

/* Për ekrane shumë të mëdha */
@media (min-width: 1400px) {
    .nav-list {
        gap: 60px; /* Edhe më shumë hapësirë */
    }
    
    .nav-link {
        font-size: 20px; /* Edhe më e madhe */
    }
}
/* Efekt glow në hover */
.nav-link:hover {
    text-shadow: 0 0 10px rgba(90, 140, 90, 0.3);
}

/* Animation kur hapet faqja */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-list li {
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

/* Delay për çdo link */
.nav-list li:nth-child(1) { animation-delay: 0.1s; }
.nav-list li:nth-child(2) { animation-delay: 0.2s; }
.nav-list li:nth-child(3) { animation-delay: 0.3s; }
.nav-list li:nth-child(4) { animation-delay: 0.4s; }
.nav-list li:nth-child(5) { animation-delay: 0.5s; }
.nav-list li:nth-child(6) { animation-delay: 0.6s; }
/* ===== NAVBAR STATIK ===== */

/* Header statik - NUK është fixed */
.static-header {
    position: static; /* Kjo e bën statik */
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
    border-bottom: 3px solid var(--soft-green);
}

/* Container për header */
.header-container-fix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    position: relative;
}

/* Logo */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
    z-index: 101;
}

.logo-image {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-green);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--medium-green);
}

/* Navigation wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: space-between;
    margin-left: 40px;
}

/* Lista statike - MË E MADHE */
.static-nav-list {
    display: flex;
    gap: 45px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
    justify-content: center;
}

/* Link-et statike - SHUMË TË MËDHA */
.static-nav-link {
    font-weight: 700;
    font-size: 19px; /* Më e madhe se më parë */
    color: var(--text-dark);
    padding: 12px 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.3px;
    display: block;
}

/* Underline efekt */
.static-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 4px; /* Më e trashë */
    background: linear-gradient(90deg, var(--medium-green), var(--light-green));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.static-nav-link:hover::after,
.static-nav-link.active::after {
    width: 100%;
}

/* Hover efekte të forta */
.static-nav-link:hover {
    color: var(--medium-green);
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(90, 140, 90, 0.2);
}

.static-nav-link.active {
    color: var(--medium-green);
    font-weight: 800;
}

/* Anët e djathta */
.static-nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 18px;
}

.social-icons a {
    font-size: 22px;
    color: var(--medium-green);
    transition: var(--transition);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--cream);
    border: 2px solid transparent;
}

.social-icons a:hover {
    color: var(--white);
    background-color: var(--medium-green);
    transform: translateY(-4px) rotate(10deg);
    border-color: var(--medium-green);
    box-shadow: 0 8px 20px rgba(90, 140, 90, 0.3);
}

/* Language switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--medium-green);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background-color: var(--medium-green);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(90, 140, 90, 0.2);
}

.lang-code.active {
    background-color: var(--medium-green);
    color: var(--white);
}

/* Hapësirë për të mos mbuluar përmbajtjen */
.header-spacer {
    height: 100px; /* Lartësia e navbar-it */
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1100px) {
    .nav-wrapper {
        gap: 30px;
        margin-left: 30px;
    }
    
    .static-nav-list {
        gap: 35px;
    }
    
    .static-nav-link {
        font-size: 17px;
    }
}

/* Mobile - HAMBURGER MENU */
@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }
    
    /* Fshi navigation në desktop view */
    .static-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 90px 25px 30px;
    }
    
    .static-nav.active {
        left: 0;
    }
    
    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        gap: 0;
        height: 100%;
    }
    
    /* Lista në mobile */
    .static-nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .static-nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--beige);
    }
    
    .static-nav-link {
        font-size: 18px;
        padding: 18px 0;
        display: block;
        width: 100%;
    }
    
    .static-nav-link::after {
        display: none; /* Fshi underline në mobile */
    }
    
    .static-nav-link:hover {
        transform: none;
        background-color: var(--cream);
        padding-left: 10px;
        border-radius: 8px;
    }
    
    /* Anët e djathta në mobile */
    .static-nav-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 25px;
        padding-top: 25px;
        border-top: 1px solid var(--beige);
    }
    
    .social-icons {
        justify-content: flex-start;
        width: 100%;
    }
    
    /* Hapësirë më e vogël në mobile */
    .header-spacer {
        height: 80px;
    }
    
    /* Logo më i vogël në mobile */
    .logo-image {
        height: 100px;
    }
    
    .logo-text {
        font-size: 22px;
    }
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 4px;
    background-color: var(--dark-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* Overlay për mobile */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(3px);
}

.nav-overlay.active {
    display: block;
}

/* Për ekrane shumë të vegjël */
@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .static-nav {
        width: 100%;
        max-width: none;
    }
    
    .header-spacer {
        height: 70px;
    }
}
/* ===== FORMULAR CONTACT ===== */

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
    border: 1px solid var(--beige);
}

.contact-form-container h3 {
    color: var(--dark-green);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-green), var(--light-green));
    border-radius: 2px;
}

/* Form groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group label i {
    color: var(--medium-green);
    width: 20px;
    text-align: center;
}

/* Input fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--beige);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: var(--cream);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--medium-green);
    box-shadow: 0 0 0 3px rgba(90, 140, 90, 0.1);
    background-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Textarea specific */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--medium-green);
}

.checkbox-label {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.required-star {
    color: #e74c3c;
    font-weight: bold;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--medium-green), var(--dark-green));
    color: white;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Status message */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.status-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    font-size: 20px;
}

.status-text {
    font-weight: 500;
    font-size: 16px;
}

/* Success status */
.form-status.success {
    display: block;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-status.success .status-icon {
    color: #28a745;
}

/* Error status */
.form-status.error {
    display: block;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-status.error .status-icon {
    color: #dc3545;
}

/* Loading status */
.form-status.loading {
    display: block;
    background-color: #e2f0fd;
    border: 1px solid #b8daff;
    color: #004085;
}

/* Error messages */
.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 6px;
    min-height: 20px;
    padding-left: 5px;
    font-weight: 500;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .contact-form-container {
        padding: 25px 20px;
        margin-top: 20px;
    }
    
    .contact-form-container h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 17px;
    }
    
    .checkbox-label {
        font-size: 14px;
    }
}
/* ===== HERO SECTION ME BACKGROUND IMAGE ===== */

/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1200px; /* Shtojmë maksimum për ekrane shumë të mëdha */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    
    /* Background Image - optimizuar */
    background-image: linear-gradient(
        rgba(44, 85, 48, 0.2),
        rgba(255, 255, 255, 0.1)
    ), url('foto_homepage_website.jpg');
    
    /* Background properties */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F7EFE5; /* Fallback color */
    
    /* Optimizim për performancë */
    will-change: transform;
    backface-visibility: hidden;
}

 .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 0;
} */

/* Overlay i optimizuar */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 85, 48, 0.35) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.85) 80%
    );
    z-index: 1;
    pointer-events: none; /* Përmirësim për performancë */
}

/* Përmbajtja mbi overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px; /* Pak më i gjerë */
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85); /* Background i lehtë për kontrast */
    backdrop-filter: blur(10px); /* Efekt glassmorphism */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(44, 85, 48, 0.15);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Titulli i optimizuar */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Fluid typography */
    font-weight: 800;
    color: #2C5530;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Nëntitulli i optimizuar */
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #5A8C5A;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Butonat e përmirësuar */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 180px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #5A8C5A 0%, #2C5530 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.4);
    background: linear-gradient(135deg, #6B9C6B 0%, #37663D 100%);
}

.btn-secondary {
    background: transparent;
    color: #2C5530;
    border: 2px solid #5A8C5A;
    box-shadow: 0 5px 15px rgba(90, 140, 90, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5A8C5A, #2C5530);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 85, 48, 0.25);
    border-color: transparent;
}

/* Scroll indicator i përmirësuar */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.scroll-indicator i {
    font-size: 1.8rem;
    color: #5A8C5A;
}

/* Animacione */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1024px) */
/* ===============================
   HERO BASE – FIX (DESKTOP)
================================ */

.hero-section {
    position: relative;
    min-height: 100vh;

    background-image: url("backgroundmobile.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Layering korrekt */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ===== HERO CONTENT I PAMIRSUAR ===== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    
    /* Stilet e reja - Glassmorphism efekt */
    background: rgba(255, 255, 255, 0.35); /* transparente */
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    border-radius: 28px;
    padding: 50px 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
    
    /* Animacion */
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Titulli i ri */
.hero-title {
    color: #2f5a3a; /* jeshile elegante */
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

/* Nëntitulli i ri */
.hero-subtitle {
    color: rgba(47, 90, 58, 0.85);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

/* Butonat e rinj */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn {
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 180px;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

/* Butoni primar - jeshile */
.btn-primary {
    background: rgba(47, 90, 58, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-primary:hover {
    background: rgba(47, 90, 58, 1);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.4);
}

/* Butoni sekondar - outline */
.btn-secondary {
    background: transparent;
    color: #2f5a3a;
    border: 1px solid rgba(47, 90, 58, 0.6);
    box-shadow: 0 5px 15px rgba(90, 140, 90, 0.1);
}

.btn-secondary:hover {
    background: rgba(47, 90, 58, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 85, 48, 0.25);
    border-color: rgba(47, 90, 58, 0.8);
}

/* Efekt ripple për butonat */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

/* ===== HIQ KËTO STILE NËSE EKZISTOJNË ===== */

/* Nëse keni këto në CSS tuaj, fshini ose komentoni: */
/*
.hero-content {
    background: #fff;  <- HEQ KËTË
}

.hero-content {
    background: rgba(255,255,255,0.9);  <- HEQ KËTË
}
*/
/* ===== HAMBURGER MENU KORRIGJUAR ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #2f5a3a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: none;
}

.nav-overlay.active {
    display: block;
}

/* Static nav për mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .static-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        z-index: 999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .static-nav.active {
        right: 0;
    }
    
    .static-nav .nav-wrapper {
        flex-direction: column;
        padding: 80px 20px 20px;
        height: 100%;
    }
    
    .static-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .static-nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: auto;
    }
    
    .static-nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .header-container {
        padding: 15px 20px;
    }
}
/* ===== LANGUAGE SWITCHER STYLES ===== */
.language-switcher {
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--medium-green);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 90px;
    justify-content: center;
}

.lang-toggle:hover {
    background-color: var(--medium-green);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(90, 140, 90, 0.2);
}

.lang-code {
    padding: 3px 8px;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.lang-code.active {
    background-color: var(--medium-green);
    color: var(--white);
}

.lang-separator {
    color: var(--text-light);
    font-weight: 700;
    user-select: none;
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #2f5a3a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .static-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .static-nav.active {
        right: 0;
    }
    
    .nav-wrapper {
        flex-direction: column;
        padding: 80px 20px 20px;
        height: 100%;
    }
    
    .static-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .static-nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: auto;
    }
    
    .static-nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
}
/* ===== BLOG HOMEPAGE SECTION ===== */
.blog-home-section {
    padding: 80px 0;
    background-color: var(--cream);
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.blog-home-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-home-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-home-card:hover .blog-real-image {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--medium-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-home-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-home-title {
    font-size: 20px;
    color: var(--dark-green);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-home-excerpt {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
    flex-grow: 1;
}

.blog-home-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-read-more {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
}

.blog-home-view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    padding: 12px 35px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-home-image {
        height: 200px;
    }
    
    .blog-home-content {
        padding: 20px;
    }
}
        /* Styles for horizontal flower layout */
        .flowers-horizontal-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }
        
        .flower-horizontal-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .flower-horizontal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .flower-horizontal-image {
            height: 200px;
            overflow: hidden;
        }
        
        .flower-horizontal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .flower-horizontal-card:hover .flower-horizontal-image img {
            transform: scale(1.05);
        }
        
        .flower-horizontal-content {
            padding: 20px;
        }
        
        .flower-horizontal-title {
            color: var(--dark-green);
            font-size: 20px;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .flower-horizontal-details {
            color: var(--text-medium);
            line-height: 1.6;
        }
        
        .flower-horizontal-details ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .flower-horizontal-details li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }
        
        .flower-horizontal-details li:before {
            content: "🌿";
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        /* Number indicators for flowers */
        .flower-number {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: var(--medium-green);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Responsive layout for horizontal flowers */
        @media (max-width: 992px) {
            .flowers-horizontal-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .flowers-horizontal-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .flower-horizontal-image {
                height: 180px;
            }
        }
        
        @media (max-width: 480px) {
            .flower-horizontal-card {
                border-radius: 10px;
            }
            
            .flower-horizontal-content {
                padding: 15px;
            }
            
            .flower-horizontal-title {
                font-size: 18px;
            }
        }
            .test-img {
            width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: 35px;  /* Ndrysho këtë vlerë për stile të ndryshme */
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        /* ===== FOTO RRETH E MADHE ===== */

.about-image {
    text-align: center;
    padding: 30px;
}

.foto-rreth-madhe {
    width: 500px;         /* Shumë më e madhe */
    height: 500px;        /* E njëjta lartësi për të mbajtur formën rreth */
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 8px solid white;
    transition: all 0.4s ease;
}

.foto-rreth-madhe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Efekt hover - zmadhohet pak */
.foto-rreth-madhe:hover {
    transform: scale(1.03);
    box-shadow: 0 35px 70px rgba(44, 85, 48, 0.3);
    border-color: #5A8C5A;
}

/* ===== MADHËSI TË NDRYSHME ===== */

/* Extra e madhe */
.foto-rreth-xxl {
    width: 600px;
    height: 600px;
}

/* E madhe (default) */
.foto-rreth-lg {
    width: 500px;
    height: 500px;
}

/* Mesatare */
.foto-rreth-md {
    width: 400px;
    height: 400px;
}

/* E vogël */
.foto-rreth-sm {
    width: 300px;
    height: 300px;
}

/* ===== PËR MOBILE ===== */

@media (max-width: 992px) {
    .foto-rreth-madhe {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .foto-rreth-madhe {
        width: 380px;
        height: 380px;
        border-width: 6px;
    }
}

@media (max-width: 576px) {
    .foto-rreth-madhe {
        width: 300px;
        height: 300px;
        border-width: 5px;
    }
}

@media (max-width: 400px) {
    .foto-rreth-madhe {
        width: 250px;
        height: 250px;
    }
}
/* ===== GOOGLE REVIEWS ===== */
.google-reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 74, 74, 0.15);
}

.google-reviews-container .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--gray);
    flex-wrap: wrap;
    gap: 20px;
}

.google-reviews-container .google-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-reviews-container .google-logo i {
    font-size: 40px;
    color: #4285F4;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
}

.google-reviews-container .google-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.google-reviews-container .rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gray-light);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.google-reviews-container .rating-summary .stars {
    display: flex;
    gap: 4px;
}

.google-reviews-container .rating-summary .stars i {
    color: #FFC107;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.2));
}

.google-reviews-container .rating-summary .rating-text {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

.google-reviews-container .rating-summary .rating-text strong {
    color: var(--red-accent);
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    margin-right: 4px;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.google-review-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(212, 74, 74, 0.1);
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red-accent);
}

.google-review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.google-review-card .reviewer-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--red-accent), var(--dark-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(212, 74, 74, 0.3);
}

.google-review-card .reviewer-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.google-review-card .reviewer-location {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-review-card .reviewer-location i {
    color: var(--sage-green);
    font-size: 12px;
}

.google-review-card .review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.google-review-card .review-stars i {
    color: #FFC107;
    font-size: 16px;
}

.google-review-card .review-text {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.google-review-card .review-date {
    font-size: 12px;
    color: var(--text-medium);
    opacity: 0.7;
    display: block;
    text-align: right;
}

.reviews-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed var(--gray);
    flex-wrap: wrap;
    gap: 15px;
}

.btn-review {
    background: linear-gradient(135deg, #4285F4, #3367D6);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
}

.btn-view-all {
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-view-all:hover {
    color: var(--dark-red);
    gap: 12px;
}

/* Responsive për Google Reviews */
@media (max-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .google-reviews-container {
        padding: 25px;
    }
    
    .google-reviews-container .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-review, .btn-view-all {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .google-reviews-container .rating-summary {
        width: 100%;
        justify-content: center;
    }
    
    .google-reviews-container .google-logo span {
        font-size: 26px;
    }
}
/* ===== VARIABLES ===== */
:root {
    --blush-pink: #FADADD;
    --ivory: #FFFFF0;
    --cream: #FFFDD0;
    --sage-green: #9CAF88;
    --muted-sage: #B7C9A0;
    --red-accent: #D44A4A;
    --dark-red: #B33A3A;
    --white: #FFFFFF;
    --gray-light: #F8F8F8;
    --gray: #E5E5E5;
    --text-dark: #2C2C2C;
    --text-medium: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--red-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--red-accent);
    font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--red-accent);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 74, 74, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 74, 74, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--red-accent);
}

.btn-secondary:hover {
    background: var(--red-accent);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--gray);
    padding: 10px 24px;
}

.btn-outline:hover {
    border-color: var(--red-accent);
    color: var(--red-accent);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-order {
    background: var(--red-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-order:hover {
    background: var(--dark-red);
    transform: translateX(5px);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 999px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 74, 74, 0.1);
    color: var(--red-accent);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--red-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-medium);
}

.trust-item i {
    color: var(--sage-green);
    font-size: 18px;
}

.hero-image {
    position: relative;
}

.flower-bouquet {
    position: relative;
    border-radius: 30px 30px 30px 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.flower-bouquet img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--red-accent);
    font-size: 32px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-medium);
}

/* ===== COLLECTION ===== */
.collection {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.pricing-tiers {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tier {
    padding: 4px 12px;
    background: var(--gray-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tier.premium {
    background: var(--sage-green);
    color: white;
}

.tier.luxury {
    background: var(--red-accent);
    color: white;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== DELIVERY AREAS ===== */
.delivery-areas {
    padding: 80px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.area-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--red-accent);
    font-size: 24px;
}

.area-card h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.area-name {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.area-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-medium);
}

.area-info i {
    color: var(--sage-green);
    margin-right: 5px;
}

.emergency-delivery {
    text-align: center;
    padding: 20px;
    background: rgba(212, 74, 74, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--red-accent);
    font-weight: 600;
}

/* ===== LIVING ABROAD ===== */
.living-abroad {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

.abroad-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.abroad-text {
    max-width: 500px;
}

.abroad-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.abroad-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.abroad-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ===== GOOGLE REVIEWS ===== */
.google-reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--white) 100%);
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 74, 74, 0.15);
}

.google-reviews-container .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--gray);
    flex-wrap: wrap;
    gap: 20px;
}

.google-reviews-container .google-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-reviews-container .google-logo i {
    font-size: 40px;
    color: #4285F4;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
}

.google-reviews-container .google-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.google-reviews-container .rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gray-light);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.google-reviews-container .rating-summary .stars {
    display: flex;
    gap: 4px;
}

.google-reviews-container .rating-summary .stars i {
    color: #FFC107;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.2));
}

.google-reviews-container .rating-summary .rating-text {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

.google-reviews-container .rating-summary .rating-text strong {
    color: var(--red-accent);
    font-size: 22px;
    font-family: 'Cormorant Garamond', serif;
    margin-right: 4px;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.google-review-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(212, 74, 74, 0.1);
}

.google-review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--red-accent);
}

.google-review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.google-review-card .reviewer-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--red-accent), var(--dark-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(212, 74, 74, 0.3);
}

.google-review-card .reviewer-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.google-review-card .reviewer-location {
    font-size: 13px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-review-card .reviewer-location i {
    color: var(--sage-green);
    font-size: 12px;
}

.google-review-card .review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.google-review-card .review-stars i {
    color: #FFC107;
    font-size: 16px;
}

.google-review-card .review-text {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.google-review-card .review-date {
    font-size: 12px;
    color: var(--text-medium);
    opacity: 0.7;
    display: block;
    text-align: right;
}

.reviews-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed var(--gray);
    flex-wrap: wrap;
    gap: 15px;
}

.btn-review {
    background: linear-gradient(135deg, #4285F4, #3367D6);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.btn-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
}

.btn-view-all {
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-view-all:hover {
    color: var(--dark-red);
    gap: 12px;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 13px;
    color: var(--text-medium);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
    color: #FFD700;
}

.review-card p {
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.7;
}

/* ===== CORPORATE ===== */
.corporate {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--red-accent) 0%, var(--dark-red) 100%);
    color: white;
}

.corporate-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.corporate-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.corporate-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature i {
    font-size: 24px;
}

.corporate-content .btn-primary {
    background: white;
    color: var(--red-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.corporate-content .btn-primary:hover {
    background: var(--ivory);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--text-dark);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: var(--red-accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red-accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red-accent);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--red-accent);
    width: 20px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
}

.footer-newsletter button {
    width: 45px;
    height: 45px;
    background: var(--red-accent);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.step-card,
.collection-card,
.area-card,
.review-card,
.google-review-card {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .hero-container,
    .abroad-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .steps-container,
    .areas-grid,
    .reviews-grid,
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .google-reviews-container .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .steps-container,
    .areas-grid,
    .reviews-grid,
    .google-reviews-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .corporate-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .google-reviews-container {
        padding: 25px;
    }
    
    .reviews-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-review, .btn-view-all {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .google-reviews-container .rating-summary {
        width: 100%;
        justify-content: center;
    }
    
    .google-reviews-container .google-logo span {
        font-size: 26px;
    }
}
/* RREGULLIM I BURGER LINE - TË RRESHTUARA */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between !important;
    align-items: center;
    width: 30px;
    height: 24px !important;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar-hamburger .hamburger-line {
    width: 100% !important;
    height: 3px !important;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 !important;
    position: relative;
}

/* Rregullimi i animacionit */
.navbar-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
}

.navbar-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
}

.navbar-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px) !important;
}

@media (max-width: 992px) {
    .navbar-hamburger {
        display: flex !important;
    }
}
/* ===== NAVBAR BURGER LINE - TË RRESHTUARA ===== */

/* Hamburger button - bazë */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between; /* Kjo i rreshton në mënyrë të barabartë */
    align-items: center;
    width: 30px;
    height: 24px; /* Lartësi fikse për të gjitha linjat */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 1002;
    position: relative;
}

/* Linjat e hamburger-it - TË GJITHA NJËSOJ */
.navbar-hamburger .hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    flex-shrink: 0; /* Parandalon tkurrjen */
    margin: 0; /* Heq çdo marginë */
}

/* Hover efekt - butoni */
.navbar-hamburger:hover .hamburger-line {
    background-color: var(--red-accent);
}

/* Animation kur hapet menu */
.navbar-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    width: 28px;
}

.navbar-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.navbar-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 28px;
}

/* Sigurohemi që në mobile të jenë të rreshtuara */
@media (max-width: 992px) {
    .navbar-hamburger {
        display: flex;
    }
    
    /* Verifikojmë që linjat janë të rreshtuara */
    .navbar-hamburger .hamburger-line {
        width: 30px;
        height: 3px;
        margin: 0;
    }
}

/* Për ekrane shumë të vegjël */
@media (max-width: 576px) {
    .navbar-hamburger {
        width: 28px;
        height: 22px;
    }
    
    .navbar-hamburger .hamburger-line {
        width: 28px;
        height: 2.8px;
    }
}