/* Modern CSS for Euro-Agrija Website */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #2E8B57;
    --primary-dark: #1F5F3F;
    --primary-light: #3CB371;
    --secondary-color: #FF6B35;
    --accent-color: #F7931E;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

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

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-link {
    display: inline-block;
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition);
}

.lang-link:hover,
.lang-link.active {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.8) 0%, rgba(60, 179, 113, 0.8) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-logo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-image img {
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

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

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Preview Section */
.about-preview-section {
    background: var(--bg-light);
}

.about-content {
    padding-right: 2rem;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

.about-image img {
    transition: var(--transition);
}

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

/* Partners Section */
.partners-section {
    background: var(--white);
}

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

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow);
}

.partner-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.country-flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: var(--text-dark) !important;
    color: white;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    .flag-img {
        width: 25px;
        height: 25px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    
    /* Page Header */
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-section,
    .about-preview-section,
    .partners-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    /* Service Cards */
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .partner-item {
        padding: 1rem;
    }
    
    .partner-item span {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-info,
    .working-hours {
        gap: 0.75rem;
    }
    
    .contact-item,
    .hours-item {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* About Page */
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .story-highlights,
    .quality-features {
        gap: 1rem;
    }
    
    .highlight-item,
    .quality-feature {
        padding: 0.75rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .partner-detail-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    /* Navigation */
    .navbar-brand {
        font-size: 1rem;
    }
    
    .brand-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 5rem 0 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .services-section,
    .about-preview-section,
    .partners-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Stats */
    .stats-row {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .partner-item {
        padding: 0.75rem;
    }
    
    .partner-item span {
        font-size: 0.8rem;
    }
    
    .country-flag {
        width: 25px;
        height: 17px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-buttons .btn {
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .contact-item,
    .hours-item {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    /* About Page */
    .highlight-item,
    .quality-feature {
        padding: 0.5rem;
    }
    
    .highlight-item h5,
    .quality-feature h5 {
        font-size: 0.9rem;
    }
    
    .highlight-item p,
    .quality-feature p {
        font-size: 0.8rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .partner-detail-item {
        padding: 1rem 0.75rem;
    }
    
    /* Contact Page */
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-actions .btn {
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-info-title {
        font-size: 1.2rem;
    }
    
    .contact-info-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-info-item {
        padding: 0.75rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-info-content h5 {
        font-size: 0.9rem;
    }
    
    .contact-info-content p {
        font-size: 0.8rem;
    }
    
    .accordion-button {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .accordion-body {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Gallery */
    .gallery-section {
        padding: 1.5rem 0;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-card {
        margin-bottom: 1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    /* Calendar */
    .calendar-section {
        padding: 1.5rem 0;
    }
    
    .calendar-info-title {
        font-size: 1.2rem;
    }
    
    .calendar-info-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .stats-row {
        gap: 0.75rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        max-width: 220px;
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
    
    .contact-item,
    .hours-item {
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn,
    .service-card,
    .partner-item,
    .gallery-card {
        transition: none;
    }
    
    .nav-link:hover,
    .btn:hover,
    .service-card:hover,
    .partner-item:hover,
    .gallery-card:hover {
        transform: none;
    }
    
    .gallery-card:hover .gallery-image img {
        transform: none;
    }
    
    .gallery-card:hover .gallery-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .gallery-overlay {
        opacity: 1;
        visibility: visible;
        background: rgba(46, 139, 87, 0.7);
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn,
    .nav-link,
    .social-link,
    .gallery-btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Better spacing for mobile */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Optimize grid layouts */
    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Better mobile navigation */
    .navbar-collapse {
        background: white;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-top: 0.5rem;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: background-color 0.2s ease;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: var(--bg-light);
    }
    
    /* Mobile form improvements */
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile button improvements */
    .btn {
        font-size: 16px;
        padding: 0.75rem 1.5rem;
        text-align: center;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1rem;
        min-height: 48px;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Mobile gallery improvements */
    .gallery-card {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    /* Mobile modal improvements */
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
        text-align: center;
    }
    
    .modal-body {
        padding: 1rem;
        text-align: center;
    }
    
    .modal-footer {
        padding: 1rem;
        text-align: center;
    }
    
    /* Mobile footer improvements */
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .social-links {
        margin-top: 1rem;
    }
    
    /* Mobile stats improvements */
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    /* Mobile partners improvements */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-item {
        padding: 1rem;
    }
    
    /* Mobile CTA improvements */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    
    /* Mobile service cards */
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        margin-bottom: 1rem;
    }
    
    /* Mobile about section */
    .about-content {
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .story-highlights,
    .quality-features {
        gap: 1rem;
    }
    
    .highlight-item,
    .quality-feature {
        flex-direction: column;
        padding: 1rem;
    }
    
    .highlight-item i,
    .quality-feature i {
        margin-bottom: 0.5rem;
    }
    
    /* Mobile contact form */
    .contact-form-container {
        margin-bottom: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    /* Mobile calendar */
    .calendar-container {
        text-align: center;
        padding: 0 1rem;
    }
    
    .calendar-info {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Mobile page header */
    .page-header {
        padding: 6rem 1rem 3rem;
    }
    
    .page-title,
    .page-subtitle {
        margin-bottom: 1rem;
    }
    
    /* Mobile hero section */
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-content {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    /* Mobile language switcher */
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    /* Mobile navbar brand */
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    /* Mobile sections */
    .services-section,
    .about-preview-section,
    .partners-section,
    .cta-section,
    .contact-section,
    .gallery-section,
    .calendar-section {
        padding: 3rem 1rem;
    }
    
    .section-title,
    .section-subtitle {
        margin-bottom: 1rem;
    }
    
    /* Mobile grid improvements */
    .row {
        margin: 0;
    }
    
    .col-lg-4,
    .col-md-6,
    .col-12 {
        padding: 0.5rem;
    }
    
    /* Mobile card improvements */
    .card,
    .service-card,
    .partner-item,
    .gallery-card,
    .mission-card,
    .service-detail-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Mobile image improvements */
    .img-fluid {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Mobile spacing improvements */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .my-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }
    
    /* Mobile navigation improvements */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile language switcher improvements */
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    .flag-img {
        width: 25px;
        height: 25px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .row {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }
    
    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stats-row {
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        max-width: 250px;
        padding: 0.6rem 1.25rem;
        width: 100%;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .brand-text {
        font-size: 0.8rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    /* Better mobile spacing */
    .hero-section {
        padding: 1.5rem 0.75rem;
    }
    
    .page-header {
        padding: 5rem 0.75rem 2rem;
    }
    
    .services-section,
    .about-preview-section,
    .partners-section,
    .cta-section,
    .contact-section,
    .gallery-section,
    .calendar-section {
        padding: 2rem 0.75rem;
    }
    
    /* Mobile form improvements */
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem 0.75rem;
        margin: 0 0.75rem;
    }
    
    /* Mobile gallery improvements */
    .gallery-grid {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    /* Mobile calendar improvements */
    .calendar-image-wrapper {
        margin: 0 0.75rem;
    }
    
    /* Mobile typography improvements for extra small devices */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile button improvements for extra small */
    .btn {
        font-size: 14px;
        padding: 0.6rem 1.25rem;
        min-height: 44px;
        width: 100%;
        max-width: 220px;
        margin-bottom: 0.75rem;
    }
    
    /* Mobile navigation improvements for extra small */
    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0.6rem 0.75rem;
        min-height: 44px;
    }
    
    /* Mobile section improvements for extra small */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile card improvements for extra small */
    .service-card,
    .partner-item,
    .gallery-card,
    .mission-card,
    .service-detail-card {
        padding: 1.25rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    /* Mobile image improvements for extra small */
    .img-fluid {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Mobile spacing improvements for extra small */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Mobile grid improvements for extra small */
    .row {
        margin: 0;
    }
    
    .col-lg-4,
    .col-md-6,
    .col-12 {
        padding: 0.25rem;
    }
    
    /* Mobile footer improvements for extra small */
    .footer-section {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    /* Mobile contact improvements for extra small */
    .contact-info-item {
        flex-direction: column;
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .contact-info-icon {
        margin-bottom: 0.5rem;
    }
    
    /* Mobile working hours improvements for extra small */
    .working-hours {
        margin-bottom: 1rem;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.5rem 0;
    }
    
    /* Mobile social links improvements for extra small */
    .social-links {
        margin-top: 0.75rem;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        min-height: 44px;
        min-width: 44px;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .flag-img,
    .country-flag {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
        padding: 1rem 0;
    }
    
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .services-section,
    .about-preview-section,
    .partners-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    .stats-row {
        flex-direction: row;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: auto;
        max-width: none;
        margin: 0;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Modern mobile design improvements */
@media (max-width: 768px) {
    /* Better mobile navigation */
    .navbar-nav {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 12px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: var(--transition);
    }
    
    .nav-link:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
    
    /* Better mobile cards */
    .service-card,
    .partner-item,
    .gallery-card {
        border-radius: 16px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        overflow: hidden;
    }
    
    .service-card:hover,
    .partner-item:hover,
    .gallery-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    
    /* Better mobile buttons */
    .btn {
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: var(--transition);
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    /* Better mobile spacing */
    .section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Better mobile typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Better mobile images */
    .img-fluid {
        border-radius: 12px;
        box-shadow: var(--shadow);
    }
    
    /* Better mobile forms */
    .form-control {
        border-radius: 12px;
        border: 2px solid var(--bg-light);
        padding: 0.75rem 1rem;
        transition: var(--transition);
    }
    
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
    }
    
    /* Better mobile gallery */
    .gallery-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .gallery-image img {
        border-radius: 16px;
        transition: var(--transition);
    }
    
    .gallery-overlay {
        border-radius: 16px;
    }
    
    /* Better mobile partners */
    .partners-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .partner-item {
        border-radius: 16px;
        padding: 1.5rem;
        background: var(--bg-light);
        border: 2px solid transparent;
        transition: var(--transition);
    }
    
    .partner-item:hover {
        border-color: var(--primary-color);
        background: white;
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    
    /* Better mobile services */
    .services-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        border-radius: 16px;
        padding: 2rem 1.5rem;
        background: white;
        border: 2px solid transparent;
        transition: var(--transition);
    }
    
    .service-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn,
    .service-card,
    .partner-item,
    .gallery-card {
        transition: none;
    }
    
    .nav-link:hover,
    .btn:hover,
    .service-card:hover,
    .partner-item:hover,
    .gallery-card:hover {
        transform: none;
    }
    
    .gallery-card:hover .gallery-image img {
        transform: none;
    }
    
    .gallery-card:hover .gallery-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .gallery-overlay {
        opacity: 1;
        visibility: visible;
        background: rgba(46, 139, 87, 0.7);
    }
    
    /* Better touch targets */
    .btn,
    .nav-link,
    .social-link,
    .gallery-btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Disable hover effects on touch */
    .service-card:hover,
    .partner-item:hover,
    .gallery-card:hover {
        transform: none !important;
        box-shadow: var(--shadow) !important;
    }
}

/* Additional mobile optimizations */
@media (max-width: 576px) {
    /* Better mobile grid */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Better mobile stats */
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        border-radius: 12px;
        background: var(--bg-light);
        box-shadow: var(--shadow);
    }
    
    /* Better mobile CTA */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: none;
    }
    
    /* Better mobile contact */
    .contact-form-container,
    .contact-info-container {
        margin: 0;
        padding: 1.5rem 1rem;
        border-radius: 16px;
        background: var(--bg-light);
        box-shadow: var(--shadow);
        text-align: center;
    }
    
    /* Better mobile footer */
    .footer-section {
        margin-bottom: 2rem;
        padding: 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
    
    /* Better mobile navigation */
    .navbar-nav {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin: 0.5rem 0;
        font-weight: 500;
        transition: var(--transition);
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateX(8px);
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-custom-lg {
    box-shadow: var(--shadow-lg);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .nav-link, .service-card, .partner-item {
    transition: var(--transition);
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Company Story Section */
.company-story {
    padding: 5rem 0;
}

.story-content {
    padding-right: 2rem;
}

.story-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.highlight-item h5 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-image img {
    transition: var(--transition);
}

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

/* Mission & Vision Cards */
.mission-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-detail-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.service-detail-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Quality Section */
.quality-content {
    padding-left: 2rem;
}

.quality-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.quality-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.quality-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.quality-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
    margin-top: 0.25rem;
}

.quality-feature h5 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-weight: 600;
}

.quality-feature p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.quality-image img {
    transition: var(--transition);
}

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

/* Partners Detail Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-detail-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-detail-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.partner-flag {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.partner-detail-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-detail-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .story-content,
    .quality-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 2rem;
    }
    
    .story-highlights,
    .quality-features {
        gap: 1rem;
    }
    
    .highlight-item,
    .quality-feature {
        padding: 0.75rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .partner-detail-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .highlight-item,
    .quality-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-item i,
    .quality-feature i {
        margin-bottom: 0.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
    background-color: white;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    color: #dc3545;
    display: none;
}

.form-control.is-invalid + .form-feedback {
    display: block;
}

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

.form-check-input {
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Contact Info Container */
.contact-info-container {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 2rem;
    text-align: center;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-subtitle {
    color: var(--text-light);
}

.contact-info-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
}

.contact-info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
}

.contact-info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.contact-info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.social-media-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.social-media-section h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    background: var(--bg-light);
}

.map-header {
    margin-bottom: 2rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-header {
    margin-bottom: 3rem;
}

.accordion {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-light);
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 2rem 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-info-container {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .contact-info-title {
        font-size: 1.3rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Gallery Styles */

.gallery-section {
    padding: 3rem 0;
}

/* Calendar Styles */
.calendar-section {
    background: var(--bg-light);
}

.calendar-container {
    text-align: center;
}

.calendar-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.calendar-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.calendar-info {
    max-width: 600px;
    margin: 0 auto;
}

.calendar-info-title {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.calendar-info-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.gallery-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 87, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}



/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    background: var(--bg-light);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        margin: 0.25rem 0;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .filter-title {
        font-size: 1.1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .gallery-description {
        font-size: 0.8rem;
    }
}

/* Seasonal Table Styles */
.seasonal-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: none;
}

.seasonal-table thead th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0.5rem;
    border: none;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.seasonal-table tbody td {
    padding: 0.75rem 0.5rem;
    border: 1px solid #e9ecef;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
    transition: var(--transition);
}

.seasonal-table tbody tr:hover {
    background-color: var(--bg-light);
    transform: scale(1.01);
}

.seasonal-table .product-name {
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    padding-left: 1rem;
    background: linear-gradient(135deg, var(--bg-light), white);
    border-right: 2px solid var(--primary-color);
}

.seasonal-table .available {
    background: linear-gradient(135deg, #a5d6a7, #81c784);
    color: #2e7d32;
    font-weight: 700;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

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

.seasonal-table .available:hover::before {
    left: 100%;
}

.seasonal-table tbody tr:nth-child(even) {
    background-color: rgba(248, 249, 250, 0.5);
}

.seasonal-table tbody tr:nth-child(even):hover {
    background-color: var(--bg-light);
}

/* Mobile responsive table */
@media (max-width: 768px) {
    .seasonal-table {
        font-size: 0.8rem;
    }
    
    .seasonal-table thead th {
        padding: 0.75rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .seasonal-table tbody td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .seasonal-table .product-name {
        padding-left: 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Mobile hero adjustments */
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .seasonal-table {
        font-size: 0.7rem;
    }
    
    .seasonal-table thead th {
        padding: 0.5rem 0.15rem;
        font-size: 0.7rem;
    }
    
    .seasonal-table tbody td {
        padding: 0.4rem 0.15rem;
        font-size: 0.7rem;
    }
    
    .seasonal-table .product-name {
        padding-left: 0.4rem;
        font-size: 0.7rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .cta-section,
    .footer {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        color: var(--text-dark);
    }
    
    .seasonal-table {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .seasonal-table .available {
        background: #a5d6a7 !important;
        color: #000 !important;
    }
}



/* Enhanced table styles for better mobile experience */
@media (max-width: 768px) {
    .seasonal-table {
        font-size: 0.75rem;
    }
    
    .seasonal-table thead th {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .seasonal-table tbody td {
        padding: 0.4rem 0.25rem;
        font-size: 0.75rem;
    }
    
    .seasonal-table .product-name {
        padding-left: 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .seasonal-table {
        font-size: 0.7rem;
    }
    
    .seasonal-table thead th {
        padding: 0.4rem 0.15rem;
        font-size: 0.7rem;
    }
    
    .seasonal-table tbody td {
        padding: 0.3rem 0.15rem;
        font-size: 0.7rem;
    }
    
    .seasonal-table .product-name {
        padding-left: 0.4rem;
        font-size: 0.7rem;
    }
}

/* Contact Information Centering */
.contact-info-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-content h5 {
    text-align: center;
}

.contact-info-content p {
    text-align: center;
}

.contact-info-content a {
    text-align: center;
    display: inline-block;
}

/* Additional centering for mobile */
@media (max-width: 768px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    .contact-info-content {
        text-align: center;
        align-items: center;
    }
    
    .contact-info-icon {
        margin: 0 auto 1rem;
    }
}

/* Mobile Calendar Table Styles */
.mobile-calendar {
    margin-top: 2rem;
}

.mobile-calendar .table-responsive {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mobile-calendar .seasonal-table {
    margin-bottom: 0;
}

.mobile-calendar .table-dark {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
}

.mobile-calendar .table-dark th {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
