@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

/* =====================
   Unified Modern Styles
   ===================== */

:root {
    --main-green: #889f67;
    --main-dark: #2c3e50;
    --main-light: #f8f9fa;
    --main-yellow: #caa430;
    --main-white: #fff;
    --main-gray: #6c757d;
    --main-radius: 20px;
    --main-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --main-font: 'Nunito', sans-serif;
}

@media (max-width: 991.98px) {
    .header-top {
        padding: 1rem 0;
    }
    
    .modern-logo img {
        max-width: 160px;
    }
    
    .header-contact {
        align-items: center;
    }
    
    .contact-main {
        justify-content: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        padding-top: 1rem;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .header-top {
        padding: 0.75rem 0;
    }
    
    .modern-logo img {
        max-width: 140px;
    }
    
    .contact-phone {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .call-request-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .header-top {
        padding: 0.5rem 0;
    }
    
    .modern-logo img {
        max-width: 120px;
    }
    
    .header-contact {
        align-items: flex-end;
    }
    
    .mobile-contact-btn {
        width: 36px;
        height: 36px;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .modern-header,
    .modern-logo img,
    .contact-phone,
    .nav-link,
    .navbar-toggler,
    .call-request-btn,
    .mobile-contact-btn {
        transition: none;
    }
    
    .nav-link::before {
        transition: none;
    }
    
    .modern-logo:hover img,
    .contact-phone:hover,
    .nav-link:hover,
    .call-request-btn:hover,
    .mobile-contact-btn:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modern-header {
        background: white;
        border-bottom: 2px solid #000;
    }
    
    .contact-phone,
    .mobile-contact-btn {
        border-width: 2px;
        border-color: #000;
    }
    
    .nav-link {
        border: 1px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-color: #000;
        background: #f0f0f0;
    }
}

/* Loading Animation for Header */
@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-header {
    animation: headerFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle Pulse Animation for Active Nav Item */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(136, 159, 103, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(136, 159, 103, 0.2);
    }
}

.nav-link.active {
    animation: subtlePulse 3s ease-in-out infinite;
}
/* ======= Footer ======= */
/* ===============================================
   MODERN FOOTER DESIGN WITH GLASSMORPHISM
   =============================================== */

/* Main Footer Container */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(136, 159, 103, 0.1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Background Pattern */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
}

/* Footer Main Section */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Footer Logo Section */
.footer-logo-section {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.2));
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    transition: all 0.3s ease;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    line-height: 1.4;
}

/* Footer Navigation Section */
.footer-nav-section {
    text-align: center;
}

.footer-nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    border-radius: 2px;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    justify-items: center;
}

.footer-nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #495057;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.1) 0%,
        rgba(136, 159, 103, 0.05) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
}

.footer-nav-link:hover {
    color: #889f67;
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Footer Contact Section */
.footer-contact-section {
    text-align: center;
}

.footer-contact-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.08) 0%,
        rgba(136, 159, 103, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(136, 159, 103, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-contact-item:hover {
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.15) 0%,
        rgba(136, 159, 103, 0.08) 100%);
    border-color: rgba(136, 159, 103, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 159, 103, 0.1);
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: #889f67;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.1);
    color: #6d7f53;
}

.footer-contact-text {
    font-size: 0.9rem;
    color: #495057;
    margin: 0;
    font-weight: 500;
}

.footer-contact-link {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #889f67;
    text-decoration: none;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(136, 159, 103, 0.3) 20%,
        rgba(136, 159, 103, 0.5) 50%,
        rgba(136, 159, 103, 0.3) 80%,
        transparent 100%);
    margin: 2rem 0;
    border: none;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-copyright-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.footer-copyright-text:first-child {
    font-weight: 600;
    color: #495057;
}

.footer-brand-highlight {
    color: #889f67;
    font-weight: 700;
}

.footer-developer {
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1.5rem;
    }
    
    .modern-footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        gap: 2rem;
    }
    
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-contact-info {
        gap: 0.75rem;
    }
    
    .footer-contact-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .modern-footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-logo img {
        max-width: 140px;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-nav-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-copyright {
        gap: 0.3rem;
    }
    
    .footer-copyright-text {
        font-size: 0.8rem;
    }
    
    .modern-footer {
        padding: 1.5rem 0 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-logo,
    .footer-nav-link,
    .footer-contact-item,
    .footer-contact-icon {
        transition: none;
    }
    
    .footer-logo:hover,
    .footer-nav-link:hover,
    .footer-contact-item:hover {
        transform: none;
    }
    
    .footer-nav-link::before {
        transition: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modern-footer {
        background: white;
        border-top: 2px solid #000;
    }
    
    .footer-contact-item {
        border-width: 2px;
        border-color: #000;
    }
    
    .footer-nav-link {
        border: 1px solid transparent;
    }
    
    .footer-nav-link:hover {
        border-color: #000;
        background: #f0f0f0;
    }
}

/* Subtle Animation for Footer Entry */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-footer {
    animation: footerFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover animation for navigation items */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(136, 159, 103, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(136, 159, 103, 0.1);
    }
}

.footer-nav-link:hover {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* ===============================================
   MODERN HEADER DESIGN WITH GLASSMORPHISM
   =============================================== */

/* Main Header Container */
.modern-header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.98) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Header Section */
.header-top {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(136, 159, 103, 0.1);
    background: linear-gradient(90deg, 
        rgba(136, 159, 103, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(136, 159, 103, 0.05) 100%);
}

/* Logo Styling */
.modern-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.modern-logo img {
    max-width: 180px;
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.modern-logo:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.2));
}

/* Contact Section */
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.contact-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.1) 0%, 
        rgba(136, 159, 103, 0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(136, 159, 103, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-phone:hover {
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.2) 0%, 
        rgba(136, 159, 103, 0.1) 100%);
    border-color: rgba(136, 159, 103, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 159, 103, 0.15);
}

.phone-icon {
    width: 20px;
    height: 20px;
    color: #889f67;
    transition: all 0.3s ease;
}

.contact-phone:hover .phone-icon {
    transform: rotate(-15deg) scale(1.1);
    color: #6d7f53;
}

.phone-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone:hover .phone-number {
    color: #889f67;
}

.call-request-btn {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    border: none;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(136, 159, 103, 0.3);
}

.call-request-btn:hover {
    background: linear-gradient(135deg, #6d7f53 0%, #889f67 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 159, 103, 0.4);
    color: white;
}

/* Mobile Contact Buttons */
.mobile-contact-btns {
    display: flex;
    gap: 0.5rem;
}

.mobile-contact-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(136, 159, 103, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    color: #889f67;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-contact-btn:hover {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    border-color: #889f67;
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(136, 159, 103, 0.3);
}

/* Navigation Section */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 1) 50%, 
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced sticky navigation effect */
.header-nav.scrolled {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.99) 0%, 
        rgba(248, 249, 250, 1) 50%, 
        rgba(255, 255, 255, 0.99) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(136, 159, 103, 0.2);
}

.modern-navbar {
    background: transparent !important;
    padding: 1rem 0;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 0.75rem 1.25rem !important;
    color: #2c3e50 !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.1) 0%, 
        rgba(136, 159, 103, 0.05) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover {
    color: #889f67 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 159, 103, 0.15);
}

.nav-link.active {
    color: #889f67 !important;
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.15) 0%, 
        rgba(136, 159, 103, 0.1) 100%);
    box-shadow: 0 4px 15px rgba(136, 159, 103, 0.1);
    font-weight: 700;
    border: 1px solid rgba(136, 159, 103, 0.2);
}

/* Mobile Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.1) 0%, 
        rgba(136, 159, 103, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.2) 0%, 
        rgba(136, 159, 103, 0.1) 100%);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(136, 159, 103, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28136, 159, 103, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .header-top {
        padding: 1rem 0;
    }
    
    .modern-logo img {
        max-width: 160px;
    }
    
    .header-contact {
        align-items: center;
    }
    
    .contact-main {
        justify-content: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.25rem;
        padding-top: 1rem;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(248, 249, 250, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .header-top {
        padding: 0.75rem 0;
    }
    
    .modern-logo img {
        max-width: 140px;
    }
    
    .contact-phone {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .call-request-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .header-top {
        padding: 0.5rem 0;
    }
    
    .modern-logo img {
        max-width: 120px;
    }
    
    .header-contact {
        align-items: flex-end;
    }
    
    .mobile-contact-btn {
        width: 36px;
        height: 36px;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .modern-header,
    .modern-logo img,
    .contact-phone,
    .nav-link,
    .navbar-toggler,
    .call-request-btn,
    .mobile-contact-btn {
        transition: none;
    }
    
    .nav-link::before {
        transition: none;
    }
    
    .modern-logo:hover img,
    .contact-phone:hover,
    .nav-link:hover,
    .call-request-btn:hover,
    .mobile-contact-btn:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modern-header {
        background: white;
        border-bottom: 2px solid #000;
    }
    
    .contact-phone,
    .mobile-contact-btn {
        border-width: 2px;
        border-color: #000;
    }
    
    .nav-link {
        border: 1px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-color: #000;
        background: #f0f0f0;
    }
}

/* Loading Animation for Header */
@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-header {
    animation: headerFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle Pulse Animation for Active Nav Item */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(136, 159, 103, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(136, 159, 103, 0.2);
    }
}

.nav-link.active {
    animation: subtlePulse 3s ease-in-out infinite;
}


/* ======= Hero Carousel ======= */
/* ===============================================
   MODERN HERO CAROUSEL DESIGN
   =============================================== */

/* Hero Carousel Container */
.hero-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Modern Carousel Styling */
.hero-carousel .carousel {
    height: 100%;
}

.hero-carousel .carousel-inner {
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(136, 159, 103, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(136, 159, 103, 0.1) 100%
    );
    z-index: 1;
}

/* Hero Images */
.hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-in-out;
}

.hero-carousel .carousel-item.active img {
    transform: scale(1.05);
}

/* Modern Carousel Caption */
.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-carousel .carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.5s forwards;
}

.hero-carousel .carousel-caption p {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.8s forwards;
}

/* Modern CTA Button */
.hero-carousel .carousel-caption .hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(136, 159, 103, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 1.1s forwards;
    border: 2px solid transparent;
}

.hero-carousel .carousel-caption .hero-cta:hover {
    background: transparent;
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(136, 159, 103, 0.6);
}

/* Modern Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 2rem;
    margin: 0;
    z-index: 3;
}

.hero-carousel .carousel-indicators button {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    transform: scaleX(1.5);
}

/* Modern Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 2rem;
}

.hero-carousel .carousel-control-next {
    right: 2rem;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(136, 159, 103, 0.3);
    border-color: rgba(136, 159, 103, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile Hero Section */
.mobile-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
}

.mobile-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(136, 159, 103, 0.2) 100%
    );
    z-index: 1;
}

.mobile-hero .mobile-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.mobile-hero .mobile-caption h1 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.mobile-hero .mobile-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-carousel {
        height: 80vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-carousel .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 1.2rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 60px;
        height: 60px;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 1rem;
    }
    
    .hero-carousel .carousel-control-next {
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel {
        height: 70vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-carousel .carousel-caption h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-carousel .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-carousel .carousel-caption .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 1rem;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 40px;
        height: 3px;
        margin: 0 4px;
    }
}

@media (max-width: 575.98px) {
    .mobile-hero {
        height: 60vh;
        min-height: 350px;
    }
    
    .mobile-hero .mobile-caption h1 {
        font-size: 1.5rem;
    }
    
    .mobile-hero .mobile-caption p {
        font-size: 0.9rem;
    }
}

/* High Performance and Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-carousel .carousel-item img {
        transition: none;
        transform: none;
    }
    
    .hero-carousel .carousel-item.active img {
        transform: none;
    }
    
    .hero-carousel .carousel-caption h2,
    .hero-carousel .carousel-caption p,
    .hero-carousel .carousel-caption .hero-cta {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        transition: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-carousel .carousel-item::before {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .hero-carousel .carousel-caption h2,
    .hero-carousel .carousel-caption p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        background: rgba(0, 0, 0, 0.7);
        border-color: white;
    }
    
    .hero-carousel .carousel-indicators button {
        background: rgba(255, 255, 255, 0.8);
    }
    
    .hero-carousel .carousel-indicators .active {
        background: white;
    }
}

/* Section spacing control */
.main-title-section {
    padding-top: 2rem !important;
    margin-top: 0;
}

/* Responsive spacing adjustments */
@media (max-width: 767.98px) {
    .main-title-section {
        padding-top: 1.5rem !important;
    }
    
    .mobile-hero {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .main-title-section {
        padding-top: 1rem !important;
    }
}
/* ======= Standards ======= */
/* ===============================================
   MODERN STANDARDS PAGE DESIGN
   =============================================== */

/* Page Container */
.modern-standards-page {
    padding: 3rem 0;
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-standards-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Page Content */
.standards-content {
    position: relative;
    z-index: 2;
}

/* Page Header */
.standards-header {
    text-align: center;
    margin-bottom: 4rem;
}

.standards-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.standards-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.standards-olive-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.standards-olive-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Cards Grid */
.standards-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Standard Card */
.standard-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.05) 0%,
        rgba(136, 159, 103, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.standard-card:hover::before {
    opacity: 1;
}

.standard-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(136, 159, 103, 0.3);
}

/* Card Content */
.standard-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.standard-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.standard-card:hover .standard-card-title {
    color: #889f67;
}

.standard-card-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Open Button */
.standard-open-btn {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-shadow: 0 4px 15px rgba(136, 159, 103, 0.3);
}

.standard-open-btn:hover {
    background: linear-gradient(135deg, #6d7f53 0%, #889f67 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136, 159, 103, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .standards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .standards-title {
        font-size: 2rem;
    }
    
    .modern-standards-page {
        padding: 2rem 0;
    }
    
    .standards-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .standard-card {
        height: 320px;
    }
    
    .standard-card-content {
        padding: 1.5rem;
    }
    
    .standards-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .standards-olive-icon {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .modern-standards-page {
        padding: 1.5rem 0;
    }
    
    .standards-header {
        margin-bottom: 2rem;
    }
    
    .standards-title {
        font-size: 1.5rem;
    }
    
    .standard-card {
        height: 300px;
    }
    
    .standard-card-content {
        padding: 1.25rem;
    }
    
    .standard-card-title {
        font-size: 1.1rem;
    }
    
    .standard-card-description {
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .standard-card,
    .standards-olive-icon,
    .standard-open-btn {
        transition: none;
    }
    
    .standard-card:hover,
    .standards-olive-icon:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .standard-card {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .standard-open-btn {
        border: 2px solid #000;
    }
}

/* Loading Animation */
@keyframes standardsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-standards-page {
    animation: standardsFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.standard-card {
    animation: standardsFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.standard-card:nth-child(1) { animation-delay: 0.1s; }
.standard-card:nth-child(2) { animation-delay: 0.2s; }
.standard-card:nth-child(3) { animation-delay: 0.3s; }
.standard-card:nth-child(4) { animation-delay: 0.4s; }
.standard-card:nth-child(5) { animation-delay: 0.5s; }
.standard-card:nth-child(6) { animation-delay: 0.6s; }
.standard-card:nth-child(7) { animation-delay: 0.7s; }
.standard-card:nth-child(8) { animation-delay: 0.8s; }
/* ======= Products ======= */
/* ===============================================
   MODERN PRODUCTS PAGE DESIGN
   =============================================== */

/* Page Container */
.modern-products-page {
    padding: 3rem 0;
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Page Content */
.products-content {
    position: relative;
    z-index: 2;
}

/* Page Header */
.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.products-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
}

.products-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.olive-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.olive-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.05) 0%,
        rgba(136, 159, 103, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(136, 159, 103, 0.3);
}

/* Product Image */
.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* Product Image Overlay */
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%);
    transition: all 0.3s ease;
}

.product-card:hover .product-image::after {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(136, 159, 103, 0.1) 50%,
        rgba(136, 159, 103, 0.2) 100%);
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #889f67;
}

/* Product Description Section */
.products-description {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 159, 103, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.description-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    border-radius: 2px;
}

.product-category {
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #889f67;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #889f67 0%, #a8bf87 100%);
    border-radius: 2px;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 1.5rem;
}

.product-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(136, 159, 103, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.product-list li:last-child {
    border-bottom: none;
}

.product-list li::before {
    content: '•';
    color: #889f67;
    font-weight: bold;
    position: absolute;
    left: -1rem;
    top: 0.5rem;
}

.product-list li:hover {
    color: #889f67;
    transform: translateX(8px);
}

.product-name {
    font-weight: 600;
    color: #2c3e50;
}

.product-description {
    color: #6c757d;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .modern-products-page {
        padding: 2rem 0;
    }
    
    .products-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .product-card {
        height: 320px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .products-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .products-description {
        padding: 2rem;
        margin-top: 1.5rem;
    }
    
    .olive-icon {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .modern-products-page {
        padding: 1.5rem 0;
    }
    
    .products-header {
        margin-bottom: 2rem;
    }
    
    .products-title {
        font-size: 1.5rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        height: 300px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .products-description {
        padding: 1.5rem;
    }
    
    .description-title {
        font-size: 1.25rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .product-card,
    .product-image img,
    .olive-icon,
    .product-list li {
        transition: none;
    }
    
    .product-card:hover,
    .olive-icon:hover {
        transform: none;
    }
    
    .product-card:hover .product-image img {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .product-card {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .products-description {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .product-list li {
        border-bottom-color: #000;
    }
}

/* Loading Animation */
@keyframes productsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-products-page {
    animation: productsFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card {
    animation: productsFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
/* ======= Packing ======= */
/* ===============================================
   MODERN PACKING PAGE DESIGN
   =============================================== */

/* Page Container */
.modern-packing-page {
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-packing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.packing-hero {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

/* Content Section */
.packing-content-section {
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 2;
}

/* Page Header */
.packing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.packing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.packing-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.packing-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.packing-olive-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.packing-olive-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Packaging Section */
.packaging-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.packaging-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(136, 159, 103, 0.3);
}

.packaging-section:last-child {
    margin-bottom: 0;
}

/* Section Header */
.packaging-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.packaging-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #889f67;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.packaging-section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Carousel Container */
.packing-carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.carousel-inner {
    border-radius: 15px;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(136, 159, 103, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.packaging-carousel:hover .carousel-control-prev,
.packaging-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(136, 159, 103, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Carousel Indicators */
.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(136, 159, 103, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #889f67;
    transform: scale(1.2);
}

/* Info Card */
.packing-info-card {
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.9) 0%,
        rgba(255, 255, 255, 0.95) 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(136, 159, 103, 0.1);
}

.packing-info-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Info List */
.packing-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.packing-info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(136, 159, 103, 0.1);
    display: flex;
}

.packing-info-list li:last-child {
    border-bottom: none;
}

.packing-info-list strong {
    color: #2c3e50;
    min-width: 150px;
    display: inline-block;
}

.packing-info-list span {
    color: #6c757d;
}

/* Bottle Options Section */
.bottle-options-section {
    margin-top: 4rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #889f67;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Bottle Grid */
.bottle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.bottle-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

.bottle-item.featured {
    grid-column: 1;
}

.bottle-item:not(.featured) {
    grid-column: 1;
}

.bottle-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    height: 350px;
    position: relative;
    padding: 0;
    margin: 0;
}

.bottle-image {
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Bottle Overlay - removed hover effects */
.bottle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.bottle-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 16px 50px rgba(136, 159, 103, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: white;
    color: #889f67;
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .packing-hero {
        padding: 3rem 0 1.5rem;
    }
    
    .packing-title {
        font-size: 2rem;
    }
    
    .packing-subtitle {
        font-size: 1.1rem;
    }
    
    .packing-content-section {
        padding: 1.5rem 0 3rem;
    }
    
    .packaging-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .packing-carousel {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .carousel-item img {
        height: 350px;
    }
    
    .bottle-options-section {
        padding: 2.5rem 2rem;
        margin-top: 3rem;
    }
    
    .bottle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bottle-item:not(.featured) {
        grid-column: 1;
    }
    
    .bottle-card {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .packing-hero {
        padding: 2.5rem 0 1rem;
    }
    
    .packing-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .packing-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .packing-content-section {
        padding: 1rem 0 2.5rem;
    }
    
    .packaging-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .packing-info-card {
        padding: 1.5rem;
    }
    
    .packing-carousel {
        height: 300px;
    }
    
    .carousel-item img {
        height: 300px;
    }
    
    .packing-section-title {
        font-size: 1.3rem;
    }
    
    .bottle-options-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .bottle-image {
        height: 100%;
        width: 100%;
        border-radius: 15px;
    }
    
    .cta-card {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .packing-hero {
        padding: 2rem 0 0.5rem;
    }
    
    .packing-header {
        margin-bottom: 1.5rem;
    }
    
    .packing-title {
        font-size: 1.5rem;
    }
    
    .packing-subtitle {
        font-size: 0.95rem;
    }
    
    .packing-olive-icon {
        width: 60px;
        height: 45px;
    }
    
    .packing-content-section {
        padding: 0.5rem 0 2rem;
    }
    
    .packaging-section {
        padding: 1.25rem;
    }
    
    .packing-section-title {
        font-size: 1.2rem;
    }
    
    .packing-info-list strong {
        min-width: 120px;
    }
    
    .bottle-options-section {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .bottle-card {
        height: 250px;
    }
    
    .bottle-image {
        height: 100%;
        width: 100%;
        border-radius: 15px;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .packaging-section,
    .packing-olive-icon,
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
    
    .packaging-section:hover,
    .packing-olive-icon:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .packaging-section,
    .bottle-card {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .packing-info-list li {
        border-bottom-color: #000;
    }
}

/* Loading Animation */
@keyframes packingFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-packing-page {
    animation: packingFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.packaging-section {
    animation: packingFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.packaging-section:nth-child(1) { animation-delay: 0.1s; }
.packaging-section:nth-child(2) { animation-delay: 0.2s; }
.packaging-section:nth-child(3) { animation-delay: 0.3s; }
.packaging-section:nth-child(4) { animation-delay: 0.4s; }
/* ======= Contacts ======= */
/* ===============================================
   MODERN CONTACTS PAGE DESIGN
   =============================================== */

/* Page Container */
.modern-contacts-page {
    padding: 3rem 0;
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-contacts-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Page Content */
.contacts-content {
    position: relative;
    z-index: 2;
}

/* Page Header */
.contacts-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.contacts-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.contacts-olive-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.contacts-olive-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Contact Sections */
.contact-section {
    margin-bottom: 4rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    border-radius: 2px;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(136, 159, 103, 0.3);
}

/* Contact Icon */
.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.1) 0%, 
        rgba(136, 159, 103, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(136, 159, 103, 0.2);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, 
        rgba(136, 159, 103, 0.2) 0%, 
        rgba(136, 159, 103, 0.1) 100%);
    transform: scale(1.1);
    border-color: rgba(136, 159, 103, 0.4);
}

.contact-icon i {
    font-size: 1.75rem;
    color: #889f67;
}

/* Contact Details */
.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.contact-value {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    color: #889f67;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.contact-link:hover {
    color: #6d7f53;
    text-decoration: underline;
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 450px;
}

.map-container:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(136, 159, 103, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Company Details Section */
.company-details-section {
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    padding: 4rem 0;
    border-radius: 20px;
    margin: 3rem 0;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Info Card */
.info-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(136, 159, 103, 0.3);
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #889f67;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.info-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    border-radius: 1px;
}

.info-card-content {
    text-align: left;
}

.info-card-content p {
    margin-bottom: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.info-card-content strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contacts-title {
        font-size: 2rem;
    }
    
    .modern-contacts-page {
        padding: 2rem 0;
    }
    
    .contacts-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contacts-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .contacts-olive-icon {
        width: 60px;
        height: 45px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .modern-contacts-page {
        padding: 1.5rem 0;
    }
    
    .contacts-header {
        margin-bottom: 2rem;
    }
    
    .contacts-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 300px;
        border-radius: 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .map-container,
    .info-card,
    .contacts-olive-icon,
    .contact-icon,
    .contact-link {
        transition: none;
    }
    
    .contact-card:hover,
    .map-container:hover,
    .info-card:hover,
    .contacts-olive-icon:hover,
    .contact-icon:hover {
        transform: none;
    }
    
    .contact-link:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .contact-card,
    .map-container,
    .info-card {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .contact-icon {
        border-width: 2px;
        border-color: #000;
    }
}

/* Loading Animation */
@keyframes contactsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-contacts-page {
    animation: contactsFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card {
    animation: contactsFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.info-card {
    animation: contactsFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.info-card:nth-child(1) { animation-delay: 0.5s; }
.info-card:nth-child(2) { animation-delay: 0.6s; }
/* ======= Clients ======= */
/* ===============================================
   MODERN CLIENTS PAGE DESIGN
   =============================================== */

/* Page Container */
.modern-clients-page {
    padding: 3rem 0;
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-clients-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(136, 159, 103, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Page Content */
.clients-content {
    position: relative;
    z-index: 2;
}

/* Page Header */
.clients-header {
    text-align: center;
    margin-bottom: 4rem;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.clients-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.olive-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.olive-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Client Card */
.modern-client-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.modern-client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.05) 0%,
        rgba(136, 159, 103, 0.02) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.modern-client-card:hover {
    text-decoration: none;
    color: inherit;
}

.modern-client-card:hover::before {
    opacity: 1;
}

.modern-client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(136, 159, 103, 0.3);
}

/* Client Logo Section */
.client-logo-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
}

.client-logo-container {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid rgba(136, 159, 103, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.modern-client-card:hover .client-logo-container {
    border-color: rgba(136, 159, 103, 0.3);
    box-shadow: 0 6px 20px rgba(136, 159, 103, 0.1);
    transform: scale(1.05);
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.modern-client-card:hover .client-logo-img {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Client Info Section */
.client-info-section {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(136, 159, 103, 0.1);
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(248, 249, 250, 0.05) 100%);
}

.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.modern-client-card:hover .client-name {
    color: #889f67;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 159, 103, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.trust-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.trust-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    border-radius: 2px;
}

.trust-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-stat {
    padding: 1.5rem;
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.08) 0%,
        rgba(136, 159, 103, 0.04) 100%);
    border-radius: 15px;
    border: 1px solid rgba(136, 159, 103, 0.15);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(136, 159, 103, 0.1);
    border-color: rgba(136, 159, 103, 0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #889f67;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    color: white;
    box-shadow: 0 12px 40px rgba(136, 159, 103, 0.3);
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #889f67;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #f8f9fa;
    color: #6d7f53;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .modern-clients-page {
        padding: 2rem 0;
    }
    
    .clients-header {
        margin-bottom: 3rem;
    }
    
    .trust-section {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
    
    .modern-client-card {
        height: 180px;
    }
    
    .client-logo-container {
        width: 100px;
        height: 70px;
    }
    
    .client-info-section {
        padding: 0.75rem 1rem 1rem;
    }
    
    .clients-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .trust-section {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .trust-title {
        font-size: 1.5rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .olive-icon {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 575.98px) {
    .modern-clients-page {
        padding: 1.5rem 0;
    }
    
    .clients-header {
        margin-bottom: 2rem;
    }
    
    .clients-title {
        font-size: 1.5rem;
    }
    
    .clients-subtitle {
        font-size: 1rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modern-client-card {
        height: 160px;
    }
    
    .client-logo-container {
        width: 90px;
        height: 60px;
    }
    
    .client-info-section {
        padding: 0.5rem 1rem 0.75rem;
    }
    
    .client-name {
        font-size: 0.9rem;
    }
    
    .trust-section {
        padding: 1.5rem 1rem;
    }
    
    .trust-title {
        font-size: 1.25rem;
    }
    
    .trust-description {
        font-size: 1rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-cta {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .modern-client-card,
    .client-logo-img,
    .client-logo-container,
    .olive-icon,
    .trust-stat,
    .cta-button {
        transition: none;
    }
    
    .modern-client-card:hover,
    .olive-icon:hover {
        transform: none;
    }
    
    .modern-client-card:hover .client-logo-container,
    .modern-client-card:hover .client-logo-img {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modern-client-card {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .trust-section {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .client-logo-container {
        border-width: 2px;
        border-color: #000;
    }
}

/* Loading Animation */
@keyframes clientsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-clients-page {
    animation: clientsFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-client-card {
    animation: clientsFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.modern-client-card:nth-child(1) { animation-delay: 0.1s; }
.modern-client-card:nth-child(2) { animation-delay: 0.15s; }
.modern-client-card:nth-child(3) { animation-delay: 0.2s; }
.modern-client-card:nth-child(4) { animation-delay: 0.25s; }
.modern-client-card:nth-child(5) { animation-delay: 0.3s; }
.modern-client-card:nth-child(6) { animation-delay: 0.35s; }
.modern-client-card:nth-child(7) { animation-delay: 0.4s; }
.modern-client-card:nth-child(8) { animation-delay: 0.45s; }
.modern-client-card:nth-child(9) { animation-delay: 0.5s; }
/* ======= Articles ======= */
/* ===============================================
   MODERN ARTICLES DESIGN SYSTEM
   =============================================== */

/* Page Container */
.modern-article-page {
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-article-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.article-hero {
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.article-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.article-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Content Section */
.article-content {
    padding: 2rem 0 4rem;
    position: relative;
    z-index: 2;
}

.content-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.content-section:hover::before {
    transform: scaleX(1);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-card {
    background: rgba(136, 159, 103, 0.05);
    border: 1px solid rgba(136, 159, 103, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(136, 159, 103, 0.08);
    border-color: rgba(136, 159, 103, 0.2);
    transform: translateY(-3px);
}

.info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #889f67;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #889f67;
    font-weight: bold;
}

.feature-list li:hover {
    color: #2c3e50;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.application-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(136, 159, 103, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.application-item:hover {
    background: rgba(136, 159, 103, 0.05);
    border-color: rgba(136, 159, 103, 0.2);
    transform: translateY(-5px);
}

.application-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.application-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.application-item p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Quality Indicators */
.quality-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quality-item:hover {
    background: rgba(136, 159, 103, 0.05);
    transform: translateX(5px);
}

.quality-badge {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
}

.quality-description {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.05) 0%,
        rgba(168, 191, 135, 0.03) 100%);
    border-color: rgba(136, 159, 103, 0.2);
}

/* Company Link */
.company-link {
    color: #889f67;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.company-link:hover {
    color: #6d7f53;
    border-bottom-color: #889f67;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.08) 0%,
        rgba(168, 191, 135, 0.05) 100%);
    border: 1px solid rgba(136, 159, 103, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    color: white;
    border-color: #889f67;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6d7f53 0%, #8ca56b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 159, 103, 0.3);
    color: white;
    text-decoration: none;
}

.btn-outline-secondary {
    background: transparent;
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .article-hero {
        padding: 2rem 0 1rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-indicators {
        grid-template-columns: 1fr;
    }
    
    .article-icon {
        width: 60px;
        height: 45px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .article-hero {
        padding: 1.5rem 0 0.5rem;
    }
    
    .article-title {
        font-size: 1.7rem;
    }
    
    .content-section {
        padding: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .application-item {
        padding: 1.25rem;
    }
}

/* Animation */
@keyframes articleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-article-page {
    animation: articleFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-section {
    animation: articleFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }
.content-section:nth-child(5) { animation-delay: 0.5s; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .content-section,
    .info-card,
    .application-item,
    .quality-item,
    .btn,
    .article-icon {
        transition: none;
        animation: none;
    }
    
    .content-section:hover,
    .info-card:hover,
    .application-item:hover,
    .quality-item:hover,
    .btn:hover,
    .article-icon:hover {
        transform: none;
    }
}
/* ======= About ======= */
/* ===============================================
   MODERN ABOUT PAGE DESIGN - ENHANCED VERSION
   =============================================== */

/* Page Container */
.modern-about-page {
    background: linear-gradient(135deg,
        rgba(248, 249, 250, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background Pattern */
.modern-about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(136, 159, 103, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(136, 159, 103, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.about-hero {
    padding: 4rem 0 0.5rem;
    text-align: center;
}

/* Page Content */
.about-content {
    position: relative;
    z-index: 2;
}

/* Main Content Section */
.about-main {
    padding: 2rem 0 4rem;
}

/* Page Header */
.about-header {
    text-align: center;
    margin-bottom: 1rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.about-olive-icon {
    width: 80px;
    height: 60px;
    transform: rotate(-40deg);
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(136, 159, 103, 0.2));
    transition: all 0.3s ease;
}

.about-olive-icon:hover {
    transform: rotate(-40deg) scale(1.1);
    filter: drop-shadow(0 6px 16px rgba(136, 159, 103, 0.3));
}

/* Partnership Section */
.about-partnership {
    margin-bottom: 4rem;
}

.partnership-content {
    padding: 2rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

.company-link {
    color: #889f67;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.company-link:hover {
    color: #6d7f53;
    border-bottom-color: #889f67;
    text-decoration: none;
}

.partnership-logo {
    padding: 2rem;
    text-align: center;
}

.partnership-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partnership-logo img:hover {
    transform: scale(1.05);
}

/* Timeline Container */
.about-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

/* Timeline Item */
.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Content Card */
.timeline-content-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.timeline-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(136, 159, 103, 0.3);
}

.timeline-content-card:hover::before {
    transform: scaleX(1);
}

/* Card Titles */
.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Timeline Content */
.timeline-content {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-content:last-child {
    margin-bottom: 0;
}

.timeline-content a {
    color: #889f67;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.timeline-content a:hover {
    color: #6d7f53;
    border-bottom-color: #889f67;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #6c757d;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #889f67;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Quality Badges */
.quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quality-badge {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: none;
}

/* Certificates List */
.certificates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.certificate-item {
    background: #f8f9fa;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.certificate-item:hover {
    border-color: #889f67;
    background: rgba(136, 159, 103, 0.1);
}

/* Partnership Values */
.partnership-values {
    margin-top: 1.5rem;
}

.value-item {
    background: rgba(136, 159, 103, 0.1);
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    margin-bottom: 0.5rem;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Timeline Icon */
.timeline-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.timeline-icon {
    width: 180px;
    height: 180px;
    border-radius: 10%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0px solid rgba(136, 159, 103, 0.15);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 249, 250, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 10%;
    background: linear-gradient(0deg, #889f67, #a8bf87);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 50px rgba(136, 159, 103, 0.25);
}

.timeline-icon:hover::before {
    opacity: 1;
}

.timeline-icon img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.timeline-icon:hover img {
    transform: scale(1.05);
}

/* Call to Action Section */
.about-cta {
    background: linear-gradient(135deg,
        rgba(136, 159, 103, 0.08) 0%,
        rgba(168, 191, 135, 0.05) 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.cta-content {
    padding: 2rem;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #889f67 0%, #a8bf87 100%);
    color: white;
    border-color: #889f67;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6d7f53 0%, #8ca56b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 159, 103, 0.3);
    color: white;
}

.btn-outline-secondary {
    background: transparent;
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    .about-hero {
        padding: 2rem 0 0.5rem;
    }
    
    .about-main {
        padding: 1rem 0 0.5rem;
    }
    
    .about-header {
        margin-bottom: 0.5rem;
    }
    
    .timeline-item {
        margin-bottom: 0.5rem;
    }
    
    .timeline-content-card {
        padding: 0.5rem;
    }
    
    .timeline-content {
        font-size: 1rem;
    }
    
    .timeline-icon {
        width: 140px;
        height: 140px;
    }
    
}

@media (max-width: 767.98px) {
    .about-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.75rem;
    }
    
    .about-hero {
        padding: 1.5rem 0 1rem;
    }
    
    .timeline-item {
        margin-bottom: 2.5rem;
    }
    
    .timeline-content-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-olive-icon {
        width: 60px;
        height: 45px;
    }
    
    /* Hide timeline icons on mobile */
    .timeline-icon-container {
        display: none;
    }
    
    .partnership-content {
        padding: 1rem;
    }
    
    .partnership-logo {
        padding: 0.5rem;
        margin-top: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 80%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .timeline-title {
        font-size: 1.5rem;
    }
    
    .about-hero {
        padding: 1rem 0 0.5rem;
    }
    
    .about-main {
        padding: 0.5rem 0 0.5rem;
    }
    
    .about-header {
        margin-bottom: 2rem;
    }
    
    .timeline-content-card {
        padding: 1rem;
    }
    
    .timeline-content {
        font-size: 0.95rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .quality-badges {
        justify-content: center;
    }
    
    .quality-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .certificates-list {
        justify-content: center;
    }
    
    .certificate-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .value-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
        text-align: center;
    }
    
    .about-cta {
        padding: 2rem 0;
    }
    
    .cta-content {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .timeline-content-card,
    .about-olive-icon,
    .timeline-icon {
        transition: none;
    }
    
    .timeline-content-card:hover,
    .about-olive-icon:hover,
    .timeline-icon:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .timeline-content-card {
        border-width: 2px;
        border-color: #000;
        background: white;
    }
    
    .timeline-icon {
        border-width: 2px;
        border-color: #000;
    }
}

/* Loading Animation */
@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-about-page {
    animation: aboutFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content-card {
    animation: aboutFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.timeline-item:nth-child(1) .timeline-content-card { animation-delay: 0.1s; }
.timeline-item:nth-child(2) .timeline-content-card { animation-delay: 0.2s; }
.timeline-item:nth-child(3) .timeline-content-card { animation-delay: 0.3s; }
.timeline-item:nth-child(4) .timeline-content-card { animation-delay: 0.4s; }

/* ===============================================
   SIMPLE QUALITY CARDS - NO FLIP ANIMATION
   =============================================== */

/* Section Container */
.quality-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

/* Header Styling */
.quality-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quality-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.quality-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #889f67 0%, #a8bf87 100%);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Cards Container */
.quality-cards-container {
    padding: 0 1rem;
}

/* Simple Card Design */
.quality-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
}

.quality-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-10px);
}

/* Card Inner Container */
.quality-card-inner {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    word-wrap: break-word;
    box-sizing: border-box;
}

.quality-card:hover .quality-card-inner {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: #889f67;
    transform: scale(1.02);
}

/* Card Logo - Standardized Format with Border */
.quality-card-logo {
    width: 140px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quality-card:hover .quality-card-logo {
    transform: scale(1.05);
    border-color: #889f67;
    box-shadow: 0 4px 16px rgba(136, 159, 103, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f0f4f0 100%);
}

/* Card Content */
.quality-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    min-height: 2.6rem; /* Reduced spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.quality-card-description {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.35;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 3.2rem; /* Reduced spacing */
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 575.98px) {
    .quality-section {
        padding: 3rem 0;
    }
    
    .quality-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .quality-header {
        margin-bottom: 2rem;
    }
    
    .quality-card-inner {
        height: 300px;
        padding: 1.4rem;
    }
    
    .quality-card-logo {
        width: 120px;
        height: 85px;
        margin-bottom: 0.8rem;
        padding: 8px;
    }
    
    .quality-card-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        min-height: 2.2rem; /* Reduced for mobile */
        line-height: 1.1;
    }
    
    .quality-card-description {
        font-size: 0.8rem;
        margin-bottom: 0;
        min-height: 2.8rem; /* Reduced for mobile */
        line-height: 1.25;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .quality-section {
        padding: 3.5rem 0;
    }
    
    .quality-title {
        font-size: 2rem;
    }
    
    .quality-card-inner {
        height: 310px;
        padding: 1.6rem;
    }
    
    .quality-card-logo {
        width: 130px;
        height: 90px;
        padding: 9px;
    }
    
    .quality-card-title {
        font-size: 1.05rem;
        min-height: 2.4rem; /* Reduced for tablet */
        line-height: 1.15;
        margin-bottom: 0.6rem;
    }
    
    .quality-card-description {
        font-size: 0.82rem;
        min-height: 3rem; /* Reduced for tablet */
        line-height: 1.3;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .quality-card-inner {
        height: 310px;
        padding: 1.8rem;
    }
    
    .quality-card-title {
        font-size: 1.3rem;
        min-height: 2.5rem; /* Reduced for tablet */
        line-height: 1.18;
        margin-bottom: 0.7rem;
    }
    
    .quality-card-description {
        font-size: 1rem;
        min-height: 3.2rem; /* Reduced spacing */
        line-height: 1.35;
        margin-bottom: 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .quality-card,
    .quality-card-inner,
    .quality-card-logo {
        transition: none;
    }
    
    .quality-card:hover {
        transform: none;
    }
    
    .quality-card:hover .quality-card-inner {
        transform: none;
    }
    
    .quality-card:hover .quality-card-logo {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .quality-card-inner {
        border-color: #000;
        border-width: 3px;
    }
}
