/* Performance და Caching Optimizations */
:root {
    --wine-red: #8B0000;
    --wine-red-light: #B22222;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --transition-fast: 0.3s ease;
    --border-radius: 10px;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(139, 0, 0, 0.2);
}

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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    /* lazy loading უნდა იყოს HTML-ში: <img loading="lazy"> */
}

/* GPU Acceleration for animations */
.hero, .nav-logo img, .tasting-card, .wine-category {
    transform: translateZ(0);
    will-change: transform;
}



body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* GPU acceleration for LCP improvement */
    will-change: transform;
    transform: translateZ(0);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
}



.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B0000;
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo img {
    height: 70px;
    width: auto;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
}

.nav-logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

/* Animated outline effect */
.nav-logo img::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #8B0000 0deg, transparent 0deg);
    z-index: -1;
    transition: all 0.6s ease;
}

.nav-logo img:hover::before {
    background: conic-gradient(from 0deg, #8B0000 360deg, transparent 360deg);
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B0000;
}


.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8B0000;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/winestoretasting6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    /* GPU acceleration for LCP improvement */
    will-change: transform;
    transform: translateZ(0);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* About Section */
.about {
    padding: 50px 0;
    background: #f8f9fa;
}

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

.about-text h2 {
    text-align: left;
    color: #8B0000;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature h3 {
    color: #8B0000;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

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

/* Our Story Section */
.our-story {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.our-story .section-title {
    text-align: center;
    color: #8B0000;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.our-story .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
    border-radius: 2px;
}

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

.story-text h2 {
    text-align: left;
    color: #8B0000;
    margin-bottom: 2rem;
}

.story-intro {
    margin-bottom: 2rem;
    padding: 0;
    background: #8B0000;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
    overflow: hidden;
}

.intro-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    min-height: 190px;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.intro-image img,
.family-intro .intro-image img {
    max-height: 405px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.family-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
    padding: 0;
}

.family-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.family-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139,0,0,0.15);
    display: block;
    height: auto;
    object-fit: contain;
}

.story-philosophy {
    margin-bottom: 2rem;
}

.story-philosophy h3 {
    color: #8B0000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.story-philosophy p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.story-philosophy p strong {
    color: #8B0000;
    font-size: 1.2rem;
}

.family-wineries {
    background: linear-gradient(135deg, #8B0000 0%, #8B0000 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139,0,0,0.15);
    padding: 2rem 2rem;
    color: #fff;
    margin-bottom: 2.5rem;
}

.family-text {
    flex: 1;
}

.family-wineries h3 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.family-wineries p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.story-feature {
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #8B0000;
}

.story-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.15);
    border-left-color: #A0522D;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content {
    flex: 1;
    width: 100%;
}

.feature-content h4 {
    color: #8B0000;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-details li {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.feature-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
    font-size: 0.8rem;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Wine Tasting Section */
.tasting {
    padding: 50px 0;
    background: white;
}

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

.tasting-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.tasting-card:active {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Add click indicator */
.tasting-card::after {
    content: 'Click to Book';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(139, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tasting-card:hover::after {
    opacity: 1;
}

.tasting-card:focus {
    outline: 3px solid #8B0000;
    outline-offset: 2px;
}

.tasting-card:focus::after {
    opacity: 1;
}

.tasting-card.featured {
    border: 3px solid #8B0000;
    transform: scale(1.05);
}

.tasting-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.tasting-card h3 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B0000;
    margin: 1rem 0;
}

.tasting-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.tasting-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.tasting-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8B0000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Wines Section */
.wines {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.wine-category {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wine-category:hover {
    transform: translateY(-5px);
}

.wine-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.wine-category h3 {
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.wine-category .description {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: #8B0000;
    color: white;
}

.contact h2 {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

/* Contact Item Styling for Proper Icon Alignment */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    margin-top: 0.2rem;
    min-width: 30px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: white;
    margin: 0;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    margin-top: 15px;
}

.map-container iframe {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: rgba(224, 224, 224, 0.9);
    color: #8B0000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-link:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 224, 224, 0.4);
    border: 2px solid white;
}

.map-link i {
    margin-right: 6px;
    font-size: 14px;
}

/* SIMPLE CONTACT LINKS OVERRIDE */
section.contact .contact-info .contact-item p a {
    color: white !important;  /* Default: თეთრი ტექსტი */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    padding: 2px 4px !important;  /* მცირე default padding */
    border-radius: 4px !important;  /* მცირე default radius */
    display: inline-block !important;  /* inline-block display */
}

section.contact .contact-info .contact-item p a:hover {
    color: white !important;  /* ფერი იგივე რჩება */
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    background: rgba(255, 255, 255, 0.15) !important;  /* ნაცარი ფონი */
    padding: 5px 10px !important;  /* პატარა padding */
    border-radius: 8px !important;  /* მომრგვალებული კუთხეები */
    transform: translateY(-2px) !important;  /* მცირედ ზემოთ ასვლა */
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;  /* ნაცარი shadow */
}

section.contact .contact-info .contact-item p a::after {
    /* თეთრი ხაზი ქვემოდან */
    background-color: white !important;
}

section.contact .contact-info .contact-item p a:hover::after {
    width: 100% !important;  /* Hover-ზე ხაზი 100% */
}



/* Font Awesome Icons Styling */
.info-item h3 i, .footer-contact p i {
    margin-right: 8px;
    color: #6c757d;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.contact .info-item h3 i {
    color: #e0e0e0;
}

.footer .footer-contact p i {
    color: #adb5bd;
    margin-right: 8px;
}

/* Mobile specific enhancements */
@media (max-width: 768px) {
    .phone-link {
        display: inline-block;
        padding: 2px 0;
        margin: 2px 0;
        transition: all 0.3s ease;
    }
    
    .phone-link:hover {
        transform: scale(1.05);
    }
    
    .telegram-link {
        color: #0088cc;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .telegram-link:hover {
        color: #0077b3;
        transform: scale(1.05);
    }
    
    /* Scroll to top mobile adjustments */
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 5px;  /* მარჯვენა მხარეს mobile-ზეც */
    }
    
    .scroll-arrow {
        font-size: 20px;
    }
}

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

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #fdfdfd;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    min-height: 140px;  /* textarea-ს სპეციალური სიმაღლე */
    resize: vertical;   /* მხოლოდ ვერტიკალურად resize */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 15px rgba(51, 51, 51, 0.3);
}

/* Booking Messages */
.booking-message.error {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    border: 2px solid #bd2130;
}

.booking-message i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.booking-message h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.booking-message p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-container {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 3px solid var(--wine-red);
}

.modal-header {
    background: linear-gradient(135deg, var(--wine-red) 0%, var(--wine-red-light) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease-out 0.2s both;
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.booking-details h3 {
    color: var(--wine-red);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.booking-details > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-info {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
    border-left: 5px solid var(--wine-red);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.info-item i {
    font-size: 1.2rem;
    color: var(--wine-red);
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.info-item.total-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--wine-red);
    border-top: 2px solid #f0f0f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.confirmation-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid #28a745;
}

.confirmation-message p {
    margin-bottom: 0.5rem;
    color: #2d5a2d;
}

.confirmation-message p:last-child {
    margin-bottom: 0;
}

.confirmation-message a {
    color: var(--wine-red);
    text-decoration: none;
    font-weight: bold;
}

.confirmation-message a:hover {
    text-decoration: underline;
}

.modal-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    display: flex;
    gap: 1rem;
    justify-content: center;
    border-top: 1px solid #dee2e6;
}

.modal-footer button {
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease, transform 0.6s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Desktop Call Button */
.call-desktop-btn {
    position: fixed;
    bottom: 220px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 185, 84, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Desktop Telegram Button */
.telegram-desktop-btn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.telegram-desktop-btn:hover {
    background: linear-gradient(135deg, #0077b3 0%, #1e8bc3 100%);
    transform: scale(1.08);
    color: white;
    text-decoration: none;
}

.telegram-desktop-btn i {
    transition: transform 0.3s ease;
}

.telegram-desktop-btn:hover i {
    transform: scale(1.1);
}

.call-desktop-btn:hover {
    background: linear-gradient(135deg, #168f3e 0%, #1db954 100%);
    transform: scale(1.08);
    color: white;
    text-decoration: none;
}

.call-desktop-btn i {
    transition: transform 0.3s ease;
}

.call-desktop-btn:hover i {
    transform: scale(1.1);
}

/* Phone Number Popup */
.phone-popup {
    position: fixed;
    bottom: 275px;
    right: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    color: #333;
    z-index: 999;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.phone-popup.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.phone-popup::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

/* Desktop Wine Tasting Button */
.wine-tasting-desktop-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: auto;
    min-width: 140px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0 20px;
}

/* Hide mobile buttons on desktop */
@media (min-width: 801px) {
  .call-mobile-btn,
  .telegram-mobile-btn,
  .wine-tasting-mobile-btn {
    display: none !important;
  }
}

.wine-tasting-desktop-btn:hover {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
    transform: scale(1.05);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.wine-tasting-desktop-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.wine-tasting-desktop-btn:hover i {
    transform: scale(1.1);
}

.wine-tasting-desktop-btn .btn-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Wine Tasting Button */
.wine-tasting-mobile-btn {
    position: fixed;
    bottom: 80px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wine-tasting-mobile-btn:hover {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
    transform: scale(1.08);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.wine-tasting-mobile-btn i {
    transition: transform 0.3s ease;
}

.wine-tasting-mobile-btn:hover i {
    transform: scale(1.1);
}

/* Hide desktop call button on mobile */
@media (max-width: 768px) {
    .call-desktop-btn,
    .phone-popup,
    .wine-tasting-desktop-btn {
        display: none;
    }
    
    .wine-tasting-mobile-btn {
        display: flex;
    }
    
    .telegram-mobile-btn {
        display: flex;
    }
    
    .call-mobile-btn {
        display: flex;
    }
    /* Adjust wine tasting button position for better spacing */
    .wine-tasting-mobile-btn {
        bottom: 80px;
        right: 10px;
        width: 48px;
        height: 48px;
    }
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
    transition: all 0.1s ease;
}

.scroll-arrow {
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 1;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo img {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.footer-section a,
.footer-section a:link,
.footer-section a:visited,
.footer-section a:active,
.social-links a,
.social-links a:link,
.social-links a:visited,
.social-links a:active {
    color: #ccc !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-section a:hover,
.social-links a:hover {
    color: #ffffff !important;
}

.social-links {
    display: flex;
    gap: 0.8rem;  /* შემცირებული დაშორება icon-ებს შორის */
}

.social-links a {
    font-size: 1.2rem;
    padding: 0.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
}

.flag {
    display: inline-block;
    width: 24px;
    height: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}

.flag-en {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDI0IDE4Ij4NCiAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjE4IiBmaWxsPSIjMDAyNDdkIi8+DQogIDxwYXRoIGQ9Ik0wIDBsMjQgMThNMjQgMEwwIDE4IiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMyIvPg0KICA8cGF0aCBkPSJNMCAwbDI0IDE4TTI0IDBMMCAxOCIgc3Ryb2tlPSIjY2YxNDJiIiBzdHJva2Utd2lkdGg9IjEuNSIvPg0KICA8cmVjdCB4PSI5IiB3aWR0aD0iNiIgaGVpZ2h0PSIxOCIgZmlsbD0iI2ZmZiIvPg0KICA8cmVjdCB5PSI2IiB3aWR0aD0iMjQiIGhlaWdodD0iNiIgZmlsbD0iI2ZmZiIvPg0KICA8cmVjdCB4PSIxMCIgd2lkdGg9IjQiIGhlaWdodD0iMTgiIGZpbGw9IiNjZjE0MmIiLz4NCiAgPHJlY3QgeT0iNyIgd2lkdGg9IjI0IiBoZWlnaHQ9IjQiIGZpbGw9IiNjZjE0MmIiLz4NCjwvc3ZnPg==') !important;
}

.flag-ka {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDI0IDE4Ij4NCiAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjE4IiBmaWxsPSIjZmZmIi8+DQogIDxyZWN0IHg9IjEwIiB3aWR0aD0iNCIgaGVpZ2h0PSIxOCIgZmlsbD0iI2U4MDAxYyIvPg0KICA8cmVjdCB5PSI3IiB3aWR0aD0iMjQiIGhlaWdodD0iNCIgZmlsbD0iI2U4MDAxYyIvPg0KICA8ZyBmaWxsPSIjZTgwMDFjIj4NCiAgICA8cmVjdCB4PSIyIiB5PSIyIiB3aWR0aD0iMiIgaGVpZ2h0PSIyIi8+DQogICAgPHJlY3QgeD0iMi43NSIgeT0iMSIgd2lkdGg9IjAuNSIgaGVpZ2h0PSI0Ii8+DQogICAgPHJlY3QgeD0iMSIgeT0iMi43NSIgd2lkdGg9IjQiIGhlaWdodD0iMC41Ii8+DQoNCiAgICA8cmVjdCB4PSIyMCIgeT0iMiIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPg0KICAgIDxyZWN0IHg9IjIwLjc1IiB5PSIxIiB3aWR0aD0iMC41IiBoZWlnaHQ9IjQiLz4NCiAgICA8cmVjdCB4PSIxOSIgeT0iMi43NSIgd2lkdGg9IjQiIGhlaWdodD0iMC41Ii8+DQoNCiAgICA8cmVjdCB4PSIyIiB5PSIxNCIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPg0KICAgIDxyZWN0IHg9IjIuNzUiIHk9IjEzIiB3aWR0aD0iMC41IiBoZWlnaHQ9IjQiLz4NCiAgICA8cmVjdCB4PSIxIiB5PSIxNC43NSIgd2lkdGg9IjQiIGhlaWdodD0iMC41Ii8+DQoNCiAgICA8cmVjdCB4PSIyMCIgeT0iMTQiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz4NCiAgICA8cmVjdCB4PSIyMC43NSIgeT0iMTMiIHdpZHRoPSIwLjUiIGhlaWdodD0iNCIvPg0KICAgIDxyZWN0IHg9IjE5IiB5PSIxNC43NSIgd2lkdGg9IjQiIGhlaWdodD0iMC41Ii8+DQogIDwvZz4NCjwvc3ZnPg==') !important;
}

.flag-ru {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDI0IDE4Ij4NCiAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjE4IiBmaWxsPSIjZDUyYjFlIi8+DQogIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIxMiIgZmlsbD0iIzAwMzlhNiIvPg0KICA8cmVjdCB3aWR0aD0iMjQiIGhlaWdodD0iNiIgZmlsbD0iI2ZmZiIvPg0KPC9zdmc+') !important;
}

.wolt-delivery {
    margin-top: 20px;
    padding: 10px 14px;
    border-radius: 8px;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    width: 260px;
}

.wolt-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
}

.wolt-logo {
    height: 28px;
    margin-right: 10px;
}

.wolt-text-block {
    display: flex;
    flex-direction: column;
}

.wolt-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.map-section {
    margin-top: 1.5rem;
    width: 100%;
}

.map-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.map-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.map-section .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
    background: white;
    padding: 3px;
}

.map-section iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 12px;
    filter: contrast(1.1) saturate(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Animations */
/* წავშალე fadeInUp და .loading კლასი */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo img {
        height: 60px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 0.5rem 0.2rem;
    }
    
    .story-intro {
        flex-direction: column !important;
        gap: 1rem !important;
        min-height: unset !important;
        padding: 0.5rem 0.2rem !important;
    }
    
    .story-intro h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.7rem !important;
    }
    
    .story-intro p {
        font-size: 0.98rem !important;
    }
    
    .story-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-section iframe {
        height: 180px;
    }
    
    /* Modal Mobile Styles */
    .modal-container {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
    
    .modal-footer button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .tasting-card.featured {
        transform: none;
    }
    
    /* Mobile click indicator */
    .tasting-card::after {
        font-size: 0.7rem;
        padding: 6px 10px;
        bottom: 10px;
        right: 10px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about,
    .our-story,
    .tasting,
    .wines,
    .contact,
    .footer {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .container {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }
    .section-title {
        margin-bottom: 0.7rem !important;
        padding-bottom: 0.2rem !important;
    }
    .wine-categories,
    .tasting-options {
        margin-top: 1.2rem !important;
        gap: 1rem !important;
    }
    .wines-section-highlight {
        margin-top: 1.2rem !important;
        margin-bottom: 0.7rem !important;
        padding: 0.7rem 0.5rem !important;
    }
    .story-content,
    .intro-content {
        gap: 0.5rem !important;
        margin-bottom: 0.7rem !important;
    }
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.3rem !important;
    }
    
    h2, .section-title {
        font-size: 1.1rem !important;
    }
    
    h3, .our-story .intro-text h3 {
        font-size: 0.98rem !important;
    }
    
    p, .our-story .intro-text p, .section-subtitle, .wine-category .description {
        font-size: 0.92rem !important;
    }
    
    .wine-category h3 {
        font-size: 1rem !important;
    }
    
    .tasting-card h3 {
        font-size: 1rem !important;
    }
    
    .price {
        font-size: 1.1rem !important;
    }
    
    .wines-section-highlight {
        font-size: 1.05rem !important;
        padding: 1rem 0.7rem !important;
    }
    
    .our-story .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .tasting-options {
        grid-template-columns: 1fr;
    }
    
    .wine-categories {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 150px;
    }
    
    .map-section iframe {
        height: 150px;
    }
    
    .map-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .story-features {
        gap: 1rem;
    }
    
    .story-feature {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .feature-details li {
        font-size: 0.8rem;
    }
    
    .our-story .story-content .intro-image img {
        width: 100% !important;
        max-width: 290px !important;
        height: 150px !important;
        object-fit: cover !important;
        display: block;
        margin: 0 auto;
        border-radius: 12px !important;
    }
    
    /* Small mobile click indicator */
    .tasting-card::after {
        font-size: 0.6rem;
        padding: 4px 8px;
        bottom: 8px;
        right: 8px;
    }
    
    /* Adjust wine tasting button for small screens */
    .wine-tasting-mobile-btn {
        bottom: 160px;
        right: 10px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Navbar height + extra space */
}

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

.tasting-card:hover::before {
    left: 100%;
}

.our-story .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.story-features {
    gap: 1rem;
}

.story-feature {
    padding: 1rem;
}

.feature-icon {
    width: 45px;
    height: 45px;
}

.feature-icon i {
    font-size: 1.3rem;
}

.feature-content h4 {
    font-size: 1.1rem;
}

.feature-content p {
    font-size: 0.9rem;
}

.feature-details li {
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .intro-content, .family-content {
        min-height: unset;
    }
    .family-wineries {
        padding: 1.2rem 0.7rem;
    }
}

.intro-text {
    padding: 1.5rem;
}

.family-intro {
    margin-bottom: 2rem;
    padding: 0;
    background: #8B0000;
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
    overflow: hidden;
}

.family-intro .intro-image {
    justify-content: flex-start;
}

.family-intro .intro-content {
    flex-direction: row-reverse;
}

.wines-section-highlight {
    background: #fff;
    color: #8B0000;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(139,0,0,0.10);
    padding: 1.5rem 2rem;
    margin: 3rem auto 0 auto;
    text-align: center;
    max-width: 900px;
    letter-spacing: 0.5px;
    border: 2px solid #8B0000;
    transition: box-shadow 0.3s;
}

.wines-section-highlight:hover {
    box-shadow: 0 12px 32px rgba(139,0,0,0.18);
    background: #f8f9fa;
}

.our-story .intro-image img {
  display: block;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.our-story .intro-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.our-story .intro-text,
.our-story .intro-image {
  flex: 1 1 0;
  min-width: 0;
}

.our-story .intro-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  min-width: 0;
  object-fit: cover;
}

@media (max-width: 768px) {
  .our-story .intro-content {
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 0.5rem 0.2rem !important;
    align-items: stretch !important;
  }
  .our-story .intro-text {
    width: 100% !important;
    text-align: center !important;
    padding: 0.5rem 0.2rem !important;
  }
  .our-story .intro-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 0.5rem;
  }
  .our-story .intro-image img {
    max-width: 380px !important;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px !important;
  }
}

@media (max-width: 480px) {
  .our-story .intro-content {
    gap: 0.5rem !important;
    padding: 0.2rem 0 !important;
  }
  .our-story .intro-image img {
    max-width: 280px !important;
  }
  .our-story .intro-text h3 {
    font-size: 1rem !important;
  }
  .our-story .intro-text p {
    font-size: 0.92rem !important;
  }
}

.call-mobile-btn {
  display: none;
}

@media (max-width: 768px) {
  .call-mobile-btn {
    display: flex;
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(30, 185, 84, 0.18);
    font-size: 1.3rem;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
  }
  .call-mobile-btn:hover {
    background: linear-gradient(135deg, #168f3e 0%, #1db954 100%);
    color: #fff;
    transform: scale(1.08);
  }
  
  .telegram-mobile-btn {
    display: flex;
    position: fixed;
    bottom: 220px;
    right: 10px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 136, 204, 0.18);
    font-size: 1.3rem;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
  }
  
  .telegram-mobile-btn:hover {
    background: linear-gradient(135deg, #0077b3 0%, #1e8bc3 100%);
    color: #fff;
    transform: scale(1.08);
  }
  .scroll-to-top {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.3rem !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 18px rgba(139, 0, 0, 0.18);
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%) !important;
    color: #fff !important;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: background 0.2s, transform 0.2s;
    bottom: 40px !important;
    right: 10px !important;
    z-index: 1099;
  }
  .scroll-to-top:hover {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%) !important;
    color: #fff !important;
    transform: scale(1.08);
  }
}

@media (max-width: 800px) {
  .nav-menu.open li, .nav-menu li {
    margin: 4px 0 !important;
    padding: 0 !important;
  }
  
  /* Hide desktop buttons on mobile */
  .call-desktop-btn,
  .telegram-desktop-btn,
  .wine-tasting-desktop-btn {
    display: none !important;
  }
  
  /* Show mobile buttons on mobile */
  .call-mobile-btn,
  .telegram-mobile-btn,
  .wine-tasting-mobile-btn {
    display: flex !important;
  }
}

/* BPG Algeti Font Override for Georgian Language (Lowercase) */
body.lang-ka,
body.lang-ka *:not(.fas):not(.far):not(.fal):not(.fab):not(.fa),
body.lang-ka .nav-menu a,
body.lang-ka h1,
body.lang-ka h2,
body.lang-ka h3,
body.lang-ka h4,
body.lang-ka h5,
body.lang-ka h6,
body.lang-ka p,
body.lang-ka button,
body.lang-ka input,
body.lang-ka textarea,
body.lang-ka select,
body.lang-ka .btn-primary,
body.lang-ka .btn-secondary {
    font-family: 'BPG Algeti', sans-serif !important;
    text-transform: lowercase !important;
}

/* FontAwesome icons should keep their original font */
body.lang-ka .fas,
body.lang-ka .far,
body.lang-ka .fal,
body.lang-ka .fab,
body.lang-ka .fa,
body.lang-ka i[class*="fa-"] {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands", "FontAwesome" !important;
    text-transform: none !important;
}

/* Georgian section scroll margin adjustment */
body.lang-ka #about,
body.lang-ka #our-story,
body.lang-ka #wines,
body.lang-ka #tasting,
body.lang-ka #contact {
    scroll-margin-top: 3px !important;
}

/* Georgian Font Size Adjustments */
body.lang-ka h1 {
    font-size: 2.2rem !important;
}

body.lang-ka h2,
body.lang-ka .section-title {
    font-size: 1.8rem !important;
}

body.lang-ka h3 {
    font-size: 1.2rem !important;
}

body.lang-ka p,
body.lang-ka .nav-menu a,
body.lang-ka button,
body.lang-ka input,
body.lang-ka textarea,
body.lang-ka select {
    font-size: 0.95rem !important;
}

body.lang-ka .hero-content h1 {
    font-size: 2.5rem !important;
}

body.lang-ka .hero-content p {
    font-size: 1.1rem !important;
}

/* Mobile Georgian Font Sizes */
@media (max-width: 768px) {
    body.lang-ka h1 {
        font-size: 1.8rem !important;
    }
    
    body.lang-ka h2,
    body.lang-ka .section-title {
        font-size: 1.5rem !important;
    }
    
    body.lang-ka h3 {
        font-size: 1.2rem !important;
    }
    
    body.lang-ka p,
    body.lang-ka .nav-menu a {
        font-size: 0.9rem !important;
    }
    
    body.lang-ka .hero-content h1 {
        font-size: 2rem !important;
    }
    
    body.lang-ka .hero-content p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    body.lang-ka h1 {
        font-size: 1.5rem !important;
    }
    
    body.lang-ka h2,
    body.lang-ka .section-title {
        font-size: 1.3rem !important;
    }
    
    body.lang-ka h3 {
        font-size: 1.1rem !important;
    }
    
    body.lang-ka p,
    body.lang-ka .nav-menu a {
        font-size: 0.85rem !important;
    }
    
    body.lang-ka .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    body.lang-ka .hero-content p {
        font-size: 0.95rem !important;
    }
}

/* Booking Success Modal */
.booking-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.booking-success-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-success-content h2 {
    color: #28a745;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-success-content h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.booking-details {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.booking-details p {
    margin: 0.5rem 0;
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h4 {
    color: #0056b3;
    margin-bottom: 1rem;
}

.booking-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.booking-actions button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.booking-actions .btn-primary {
    background: #28a745;
    color: white;
}

.booking-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

/* Booking Error Message */
.booking-error {
    background: #dc3545;
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
}

/* Loading State */
.booking-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: white;
    font-size: 1.2rem;
}

/* Language-specific font styles */
.lang-ka .booking-success-content,
.lang-ka .booking-error,
.lang-ka .booking-loading {
    font-family: 'BPG Algeti', sans-serif;
}

/* Ensure all call buttons have no underline */
a[href^="tel:"],
.call-desktop-btn,
.call-mobile-btn,
#price-section-call-btn,
#desktop-call-btn,
#mobile-call-btn {
    text-decoration: none !important;
}

a[href^="tel:"]:hover,
.call-desktop-btn:hover,
.call-mobile-btn:hover,
#price-section-call-btn:hover,
#desktop-call-btn:hover,
#mobile-call-btn:hover {
    text-decoration: none !important;
}

/* Ensure all CTA buttons (primary and secondary) have no underline when used as links */
a.cta-btn,
a.primary-btn,
a.secondary-btn,
a.btn-primary,
a.btn-secondary {
    text-decoration: none !important;
}

a.cta-btn:hover {
    text-decoration: none !important;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-book-tasting,
.btn-call-us {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-book-tasting {
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    color: white;
    border: 2px solid #8B0000;
}

.btn-book-tasting:hover {
    background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-call-us {
    background: transparent;
    color: white;
    border: 2px solid #ffffff;
}

.btn-call-us:hover {
    background: #ffffff;
    color: #2c1810;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(244, 164, 96, 0.1);
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #ffffff;
    color: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 164, 96, 0.3);
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px;
        margin-top: 50px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .btn-book-tasting,
    .btn-call-us {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .wolt-delivery {
        display: flex;
        margin-left: auto;
        margin-right: auto;
    }
}
a.primary-btn:hover,
a.secondary-btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover {
    text-decoration: none !important;
}

/* Red Wines Page Styles */
.red-wines-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.red-wines-hero-cover {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 0;
    z-index: 0;
}

.red-wines-hero-bg-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.red-wines-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.red-wines-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.red-wines-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.red-wines-hero-content h1 {
    color: #fff;
    font-size: 48px;
    margin: 0 0 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.red-wines-hero-content .subtitle {
    color: #fff;
    font-size: 22px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.red-wines-header {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 24px;
    text-align: center;
}

.red-wines-header h2 {
    margin: 0;
    font-size: 32px;
    color: #8B0000;
}

.red-wines-intro {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 32px 24px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-radius: 12px;
}

.red-wines-intro p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
}

.red-wines-intro p:last-child {
    margin-bottom: 0;
}

.red-wines-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 24px 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.red-wines-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
    border: 1px solid #8B0000;
    transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
    font-weight: 600;
}

.red-wines-btn:hover {
    filter: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(139,0,0,0.25);
    text-decoration: none;
}

.red-wines-btn.secondary {
    background: transparent;
    color: #8B0000;
    border-color: #8B0000;
}

.red-wines-btn.secondary:hover {
    background: #8B0000;
    color: #fff;
}

.red-wines-cards {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.red-wines-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 400px;
}

.red-wines-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139,0,0,0.15);
}

.red-wines-card-image-wrapper {
    width: 350px;
    min-width: 350px;
    height: 100%;
    display: block;
}

.red-wines-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5f5f5;
    display: block;
}

.red-wines-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.red-wines-card-title {
    font-size: 24px;
    margin: 0 0 12px;
    color: #8B0000;
    font-weight: 700;
}

.red-wines-card-description {
    color: #1a1a1a;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.red-wines-card-description p {
    margin: 0 0 12px;
}

.red-wines-card-description p:last-child {
    margin-bottom: 0;
}

.red-wines-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.red-wines-features li {
    padding: 8px 0;
    color: #6a6a6a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.red-wines-features li::before {
    content: "✓";
    color: #8B0000;
    font-weight: bold;
    font-size: 16px;
}

.red-wines-additional-info {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 40px 24px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-radius: 12px;
}

.red-wines-additional-info h2 {
    font-size: 28px;
    color: #8B0000;
    margin-bottom: 20px;
}

.red-wines-additional-info h3 {
    font-size: 24px;
    color: #8B0000;
    margin-bottom: 20px;
    font-weight: 700;
}

.red-wines-additional-info p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
}

.red-wines-additional-info p:last-child {
    margin-bottom: 0;
}

.red-wines-additional-info ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.red-wines-additional-info ul li {
    padding: 8px 0;
    display: flex;
    align-items: start;
    gap: 8px;
}

.red-wines-additional-info ul li span:first-child {
    color: #8B0000;
    font-weight: bold;
}

.red-wines-additional-info ul li span:last-child {
    flex: 1;
}

.wine-maker-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #8B0000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #8B0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
}

.social-icon svg {
    display: block;
}

@media (max-width: 768px) {
    .red-wines-page {
        padding: 0;
    }
    
    .red-wines-hero-cover {
        height: 350px;
        margin-top: 60px;
    }
    
    .red-wines-hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .red-wines-hero-content .subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .red-wines-header {
        margin: 24px auto 0;
        padding: 16px;
    }
    
    .red-wines-header h2 {
        font-size: 24px;
    }
    
    .red-wines-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
        margin: 0 auto 32px;
    }
    
    .red-wines-card {
        flex-direction: column;
        min-height: auto;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .red-wines-card-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 320px;
        border-radius: 12px;
        overflow: hidden;
        background: #f9f9f9;
    }
    
    .red-wines-card-image {
        object-fit: contain;
        padding: 12px;
        border-radius: 8px;
        clip-path: inset(0 round 8px);
    }
    
    .red-wines-card-content {
        padding: 20px;
    }
    
    .red-wines-card-title {
        font-size: 20px;
    }
    
    .red-wines-card-description {
        font-size: 14px;
    }
    
    .red-wines-card-description p {
        margin-bottom: 12px;
    }
    
    .red-wines-features {
        font-size: 14px;
    }
    
    .red-wines-features li {
        padding: 8px 0;
    }
    
    .red-wines-intro {
        margin: 0 auto 24px;
        padding: 20px 16px;
    }
    
    .red-wines-intro p {
        font-size: 15px;
    }
    
    .red-wines-cta {
        padding: 8px 16px 24px;
    }
    
    .red-wines-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .red-wines-additional-info {
        margin: 32px auto 0;
        padding: 20px 16px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .wine-maker-social span {
        font-size: 12px !important;
    }
    
    .wine-maker-social {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .red-wines-card-description p[style*="margin-top"] {
        font-size: 12px !important;
        padding: 10px !important;
    }
    
    .red-wines-cta {
        flex-direction: column;
        gap: 8px;
    }
    
    .red-wines-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .red-wines-hero-cover {
        height: 300px;
    }
    
    .red-wines-hero-content h1 {
        font-size: 24px;
    }
    
    .red-wines-hero-content .subtitle {
        font-size: 14px;
    }
    
    .red-wines-card-content {
        padding: 16px;
    }
    
    .red-wines-card-title {
        font-size: 18px;
    }
    
    .red-wines-card-description {
        font-size: 13px;
    }
    
    .red-wines-card-image-wrapper {
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
        background: #f9f9f9;
    }
    
    .red-wines-card-image {
        padding: 10px;
        border-radius: 8px;
        clip-path: inset(0 round 8px);
    }
    
    .red-wines-intro {
        padding: 16px;
    }
    
    .red-wines-features {
        font-size: 13px;
    }
    
    .red-wines-card-description p[style*="margin-top"] {
        font-size: 11px !important;
        padding: 8px !important;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .wine-maker-social {
        gap: 6px;
    }
    
    .red-wines-header h2 {
        font-size: 22px;
    }
}

