/* Custom Enhancements for Alıcılar Tarım */

/* Modern Font - Inter */
html, body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Smooth Animations */
* {
    transition: all 0.3s ease;
}

/* Enhanced Hero Section */
.slide-home-3 .content {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Better Image Hover Effects */
.image.hover-item img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.image.hover-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Enhanced Cards */
.card-product, .card-provide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card-product:hover, .card-provide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Better Typography */
.title {
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Modern Font Classes */
.font-nunito,
.font-worksans,
.font-sarabun {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Better Text Rendering */
h1, h2, h3, h4, h5, h6,
.title,
.sub-title {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p, .text, body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Enhanced Buttons */
.tf-btn {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(13, 64, 28, 0.2);
}

.tf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 64, 28, 0.3);
}

/* Product Cards Enhancement */
.card-product .image {
    height: 350px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card-product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-product:hover .image img {
    transform: scale(1.1);
}

/* Better Spacing */
section {
    padding: 100px 0;
}

/* Enhanced Page Title */
.page-title {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 64, 28, 0.8), rgba(13, 64, 28, 0.6));
    z-index: 1;
}

.page-title-inner {
    position: relative;
    z-index: 2;
}

/* Icon Enhancements */
.box-icon .icon {
    transition: transform 0.3s ease;
}

.box-icon:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

/* Better Form Styling */
.contact-form input,
.contact-form textarea {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--Primary);
    box-shadow: 0 0 0 3px rgba(13, 64, 28, 0.1);
    outline: none;
}

/* Enhanced Testimonials */
.testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Better Footer */
.footer {
    background: linear-gradient(135deg, #0d401c, #1a6932);
}

/* Enhanced Logo */
.logo-site a {
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.logo-site a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--Primary);
    transition: width 0.3s ease;
}

.logo-site a:hover::after {
    width: 100%;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Better Loading Animation */
#loading .icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Modern Header & Navbar - Clean Professional Design */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
}

.modern-header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top-bar {
    background: #0d401c;
    padding: 10px 0;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.header-top-bar .tf-container {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .header-top-bar {
        display: none;
    }
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-left {
    display: flex;
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 400;
}

.top-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    font-weight: 400;
}

.top-link:hover {
    color: white;
}

.top-link i {
    font-size: 13px;
}

.modern-navbar {
    background: #ffffff;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.modern-navbar .tf-container {
    display: flex;
    align-items: center;
}

.modern-navbar .tf-container {
    width: 100%;
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.navbar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 70px;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar-brand {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #0d401c;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.logo-link:hover .logo-text {
    color: #1a6932;
}

.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-item {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.nav-link {
    display: inline-block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0d401c;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0d401c;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
}

.contact-info:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #0d401c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.contact-info:hover .contact-icon {
    background: #1a6932;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-number {
    font-size: 16px;
    font-weight: 700;
    color: #0d401c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-number:hover {
    color: #1a6932;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    transition: opacity 0.2s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0d401c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #0d401c;
}

.mobile-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    padding: 18px 25px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #0d401c;
    transition: width 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #0d401c;
    padding-left: 35px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 4px;
}

.mobile-menu-footer {
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.mobile-contact {
    margin-bottom: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.mobile-contact-item i {
    color: #0d401c;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.mobile-contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item a:hover {
    color: #0d401c;
}

.mobile-contact-item span {
    color: #666;
}

.mobile-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background: #0d401c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: #1a6932;
    transform: translateY(-3px);
}

/* Responsive Navbar */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .navbar-menu {
        display: flex !important;
    }
    
    .contact-info {
        display: flex !important;
    }
}

@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }
    
    .contact-info {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-inner {
        gap: 15px;
    }
    
    .navbar-brand {
        min-width: auto;
    }
    
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .header-top-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .top-left,
    .top-right {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .top-link {
        justify-content: center;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .navbar-inner {
        min-height: 60px;
        gap: 15px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100vw;
    }
    
    .modern-navbar {
        padding: 10px 0;
    }
}

/* Sticky Header on Scroll */
.modern-header.sticky {
    position: fixed;
    top: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* General Mobile Responsive Improvements */
@media (max-width: 1200px) {
    .tf-container.w-1620,
    .tf-container.w-1290 {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0 !important;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .expertise-title,
    .section-title,
    .shopping-title-modern,
    .event-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .modern-header {
        padding: 0;
    }
    
    .modern-navbar {
        padding: 12px 0;
    }
    
    section {
        padding: 50px 0 !important;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .expertise-title,
    .section-title,
    .shopping-title-modern,
    .event-title,
    .testimonial-title {
        font-size: 26px;
    }
    
    .expertise-description,
    .section-description,
    .shopping-description-modern,
    .event-description {
        font-size: 15px;
    }
    
    .row {
        margin: 0 -10px;
    }
    
    .row > [class*="col-"] {
        padding: 0 10px;
    }
    
    .mb-4 {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }
    
    .expertise-title,
    .section-title,
    .shopping-title-modern,
    .event-title {
        font-size: 22px;
    }
    
    .card-content,
    .project-content-modern {
        padding: 20px 15px;
    }
    
    .btn-modern-primary,
    .btn-shopping-modern,
    .btn-event-modern {
        width: 100%;
        justify-content: center;
    }
    
    .tf-container {
        padding: 0 15px !important;
    }
    
    .row {
        margin: 0 -7.5px;
    }
    
    .row > [class*="col-"] {
        padding: 0 7.5px;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
    .page-title {
        margin-top: -60px;
        padding-top: 100px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .container,
    .tf-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Better touch targets for mobile */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Fix for images and containers */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Better spacing on mobile */
    .mb-4, .mb-30, .mb-40 {
        margin-bottom: 20px !important;
    }
    
    /* Better button sizes on mobile */
    .btn-hero, .btn-modern-primary, .btn-shopping-modern, .btn-event-modern, .card-btn, .project-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Better Grid Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Enhanced Box Contact */
.box-contact {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.box-contact:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.box-contact .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--Primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Better Text Selection */
::selection {
    background: var(--Primary);
    color: white;
}

/* Modern Hero Slider */
.modern-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: -80px;
}

@media (max-width: 992px) {
    .modern-hero-slider {
        margin-top: -70px;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        margin-top: 0;
        padding-top: 190px;
        height: 100vh;
        min-height: 500px;
    }
    
    .page-title {
        margin-top: 0;
        padding-top: 80px;
    }
    
    /* Page title spacing for other pages */
    .page-title.style-3 {
        margin-top: 0;
        padding-top: 100px;
    }
}

/* Page title spacing for About and Products pages - Desktop */
.page-title.style-3 {
    margin-top: 80px !important;
    padding-top: 120px !important;
}

@media (max-width: 992px) {
    .page-title.style-3 {
        margin-top: 70px !important;
        padding-top: 100px !important;
    }
}

@media (max-width: 768px) {
    .page-title.style-3 {
        margin-top: 60px !important;
        padding-top: 80px !important;
    }
    
    .page-title.style-3 .page-title-inner {
        padding: 50px 15px !important;
    }
    
    .page-title.style-3 .page-title-inner p.sub-title.mb-15 {
        font-size: 16px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-bottom: 15px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        letter-spacing: 1px !important;
    }
    
    .page-title.style-3 .page-title-inner h1.title {
        font-size: 42px !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }
    
    .page-title.style-3 .page-title-inner p.sub-title.mt-20 {
        font-size: 18px !important;
        margin-top: 15px !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }
    
    .page-title.style-3 .img-item {
        margin-bottom: 15px !important;
    }
    
    .page-title.style-3 .img-item img {
        max-width: 70px !important;
    }
}

.hero-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 1s ease-in-out;
}

.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.hero-swiper .swiper-slide-duplicate-active {
    opacity: 1 !important;
}

.hero-slider-container {
    width: 100%;
    height: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 64, 28, 0.85) 0%, rgba(13, 64, 28, 0.65) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: white;
    color: #0d401c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero.btn-primary:hover {
    background: #0d401c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero.btn-secondary:hover {
    background: white;
    color: #0d401c;
    transform: translateY(-3px);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: white;
    font-size: 20px;
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-nav-prev {
        left: 15px;
    }
    
    .hero-nav-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        height: 120vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-text {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* Modern Expertise Section */
.modern-expertise-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.modern-expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(13,64,28,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.expertise-header {
    position: relative;
    z-index: 1;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0d401c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.expertise-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d401c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.expertise-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.expertise-products {
    position: relative;
    z-index: 1;
}

.expertise-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 64, 28, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover .card-overlay {
    opacity: 1;
}

.card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0d401c;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.expertise-card:hover .card-icon {
    transform: translate(-50%, -50%) scale(1);
}

.card-content {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-title a {
    color: #0d401c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #1a6932;
}

.card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-features li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

.card-features li i {
    color: #0d401c;
    margin-right: 10px;
    font-size: 14px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #0d401c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.card-btn:hover {
    background: #1a6932;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(13, 64, 28, 0.3);
}

.card-btn i {
    transition: transform 0.3s ease;
}

.card-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .expertise-title {
        font-size: 38px;
    }
    
    .expertise-description {
        font-size: 16px;
    }
    
    .card-image-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .modern-expertise-section {
        padding: 80px 0;
    }
    
    .expertise-header {
        margin-bottom: 50px;
    }
    
    .expertise-title {
        font-size: 32px;
    }
    
    .expertise-subtitle {
        font-size: 14px;
    }
    
    .expertise-description {
        font-size: 15px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    .card-image-wrapper {
        height: 220px;
    }
}

/* Modern Why Choose Section */
.modern-why-choose {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.why-choose-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-main {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-choose-image:hover .image-main img {
    transform: scale(1.05);
}

.guarantee-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: #0d401c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: #0d401c;
    margin: 0;
    line-height: 1.5;
}

.why-choose-content {
    padding-left: 50px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0d401c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d401c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.benefits-grid {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #0d401c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d401c;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #0d401c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-modern-primary:hover {
    background: #1a6932;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(13, 64, 28, 0.3);
}

.btn-modern-primary i {
    transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
    transform: translateX(3px);
}

/* Modern Shopping Section */
.modern-shopping-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.shopping-content {
    padding-right: 50px;
}

.shopping-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0d401c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.shopping-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d401c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.shopping-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.shopping-products {
    position: relative;
}

.product-mini-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.product-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-mini-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-name a {
    color: #0d401c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #1a6932;
}

.product-rating {
    display: flex;
    gap: 5px;
}

.product-rating i {
    color: #ffc107;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .why-choose-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .shopping-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-title,
    .shopping-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .modern-why-choose,
    .modern-shopping-section {
        padding: 80px 0;
    }
    
    .image-main {
        height: 350px;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .section-title,
    .shopping-title {
        font-size: 28px;
    }
    
    .section-description,
    .shopping-description {
        font-size: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Modern Shopping Section - Optimized */
.modern-shopping-section-optimized {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.shopping-content-modern {
    padding-right: 50px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(13, 64, 28, 0.1);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #0d401c;
}

.content-badge i {
    font-size: 16px;
}

.shopping-title-modern {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d401c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.shopping-description-modern {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.shopping-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0d401c;
}

.feature-item i {
    color: #0d401c;
    font-size: 18px;
}

.btn-shopping-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #0d401c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-shopping-modern:hover {
    background: #1a6932;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(13, 64, 28, 0.3);
}

.btn-shopping-modern i {
    transition: transform 0.3s ease;
}

.btn-shopping-modern:hover i {
    transform: translateX(3px);
}

.shopping-products-modern {
    position: relative;
}

.product-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-modern {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-modern:hover .product-image-modern img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 64, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-link {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d401c;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.product-link:hover {
    transform: scale(1.1);
}

.product-content-modern {
    padding: 25px;
}

.product-title-modern {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-title-modern a {
    color: #0d401c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title-modern a:hover {
    color: #1a6932;
}

.product-rating-modern {
    display: flex;
    gap: 3px;
}

.product-rating-modern i {
    color: #ffc107;
    font-size: 16px;
}

/* Modern Farm Event Section */
.modern-farm-event-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.event-header {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.event-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0d401c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.event-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d401c;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.event-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.btn-event-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #0d401c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-event-modern:hover {
    background: #1a6932;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(13, 64, 28, 0.3);
}

.btn-event-modern i {
    transition: transform 0.3s ease;
}

.btn-event-modern:hover i {
    transform: translateX(3px);
}

.event-projects {
    position: relative;
}

.project-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.project-image-modern {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-modern:hover .project-image-modern img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 64, 28, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-modern:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d401c;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover {
    transform: scale(1.1) rotate(5deg);
}

.project-content-modern {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 64, 28, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d401c;
    font-size: 28px;
    margin-bottom: 20px;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-title a {
    color: #0d401c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: #1a6932;
}

.project-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    flex: 1;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    color: #0d401c;
    text-decoration: none;
    border: 2px solid #0d401c;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
}

.project-btn:hover {
    background: #0d401c;
    color: white;
    transform: translateX(5px);
}

.project-btn i {
    transition: transform 0.3s ease;
}

.project-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .shopping-content-modern {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .shopping-title-modern,
    .event-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .modern-shopping-section-optimized,
    .modern-farm-event-section {
        padding: 80px 0;
    }
    
    .shopping-title-modern,
    .event-title {
        font-size: 28px;
    }
    
    .shopping-description-modern,
    .event-description {
        font-size: 15px;
    }
    
    .shopping-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-image-modern,
    .project-image-modern {
        height: 220px;
    }
    
    .project-content-modern {
        padding: 25px 20px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-text {
        font-size: 15px;
    }
}

/* Modern Testimonial Section */
.modern-testimonial-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.testimonial-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #0d401c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d401c;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.testimonial-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.testimonials-grid {
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: rgba(13, 64, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d401c;
    font-size: 24px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #0d401c;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #0d401c;
    margin-bottom: 5px;
}

.author-location {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.author-rating {
    display: flex;
    gap: 3px;
}

.author-rating i {
    color: #ffc107;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .modern-testimonial-section {
        padding: 80px 0;
    }
    
    .testimonial-header {
        margin-bottom: 40px;
    }
    
    .testimonial-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        top: 20px;
        right: 25px;
    }
}

