/* 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;
    loading: lazy; /* ნაციფალი lazy loading */
}

/* 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 20px;
}

/* 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);
    }
    
    /* Scroll to top mobile adjustments */
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;  /* მარჯვენა მხარეს 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: 90px;
    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;
}

.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: 155px;
    right: 80px;
    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: 20px;
    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: 150px;
    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;
}

.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: 156px;
    right: 30px;
    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;
    }
    
    /* Adjust wine tasting button position for better spacing */
    .wine-tasting-mobile-btn {
        bottom: 156px;
        right: 30px;
        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);
}

.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: 146px;
        right: 30px;
        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: 90px;
    right: 30px;
    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);
  }
  .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: 24px !important;
    right: 30px !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;
  }
}

/* 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.4rem !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,
a.primary-btn:hover,
a.secondary-btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover {
    text-decoration: none !important;
}

