﻿/* ============================================
   ARBIYO - Global CSS Styles
   ============================================ */

/* Root Variables */
:root {
    --arbiyo-green: #6BA539;
    --arbiyo-dark: #1a1a1a;
    --arbiyo-light: #f8f9fa;
    --arbiyo-white: #ffffff;
    --border-radius: 1rem;
    --transition: all 0.3s ease;
}

/* ============================================
   GENERAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--arbiyo-white);
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--arbiyo-dark);
    line-height: 1.3;
}

p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: var(--arbiyo-green);
    transition: var(--transition);
}

    a:hover {
        color: darken(var(--arbiyo-green), 10%);
        text-decoration: none;
    }

/* ============================================
   COLORS & UTILITIES
   ============================================ */

.text-arbiyo-green {
    color: var(--arbiyo-green) !important;
}

.bg-arbiyo-green {
    background-color: var(--arbiyo-green) !important;
}

.btn-arbiyo-green {
    background-color: var(--arbiyo-green);
    color: white;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-arbiyo-green:hover {
        background-color: #5a9530;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(107, 165, 57, 0.3);
    }

.btn-outline-arbiyo-green {
    color: var(--arbiyo-green);
    border: 2px solid var(--arbiyo-green);
    font-weight: 600;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
}

    .btn-outline-arbiyo-green:hover {
        background-color: var(--arbiyo-green);
        color: white;
        border-color: var(--arbiyo-green);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(107, 165, 57, 0.3);
    }

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background-color: var(--arbiyo-dark) !important;
    padding: 1rem 0;
    border-bottom: 3px solid var(--arbiyo-green);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--arbiyo-green) !important;
    transition: var(--transition);
}

    .navbar-brand:hover {
        transform: scale(1.05);
    }

.navbar-nav .nav-link {
    color: #ddd !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: var(--transition);
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: var(--arbiyo-green) !important;
    }

    .navbar-nav .nav-link.active {
        color: var(--arbiyo-green) !important;
        font-weight: 700;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--arbiyo-green);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.6rem 1.5rem;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-3px);
}

/* ============================================
   CARDS & CONTAINERS
   ============================================ */

.card {
    border-radius: 1.5rem;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

    .card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

.rounded-4 {
    border-radius: 1.5rem !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15) !important;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

    .service-card:hover {
        background: linear-gradient(135deg, rgba(107, 165, 57, 0.05) 0%, rgba(107, 165, 57, 0.02) 100%);
        border-color: var(--arbiyo-green);
        box-shadow: 0 12px 24px rgba(107, 165, 57, 0.2);
        transform: translateY(-8px);
    }

.service-icon {
    font-size: 3rem;
    color: var(--arbiyo-green);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(107, 165, 57, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #ffffff !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .hero-section .lead {
        color: #ffffff !important;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
}

    section.py-5 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

/* ============================================
   BADGES & BADGES STYLES
   ============================================ */

.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

    .badge.bg-arbiyo-green {
        background-color: var(--arbiyo-green) !important;
        color: white;
    }

/* ============================================
   STEPS & PROGRESS
   ============================================ */

.step-number {
    display: inline-block;
    margin-bottom: 1rem;
}

    .step-number .badge {
        font-size: 1.5rem;
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--arbiyo-green) !important;
    }

/* ============================================
   HOVER EFFECTS
   ============================================ */

.hover-effect {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .hover-effect:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(107, 165, 57, 0.25);
    }

/* ============================================
   SWIPER STYLES
   ============================================ */

.swiper {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.swiper-pagination-bullet {
    background-color: var(--arbiyo-green) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1;
        background-color: var(--arbiyo-green) !important;
    }

.swiper-button-next,
.swiper-button-prev {
    color: var(--arbiyo-green) !important;
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
    background-color: white !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background-color: var(--arbiyo-green) !important;
        color: white !important;
        box-shadow: 0 8px 20px rgba(107, 165, 57, 0.4);
    }

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--arbiyo-dark) !important;
    color: #ddd;
    border-top: 3px solid var(--arbiyo-green);
}

    footer h5, footer h6 {
        color: white;
    }

    footer a {
        color: #999;
        transition: var(--transition);
    }

        footer a:hover {
            color: var(--arbiyo-green);
        }

    footer ul li {
        margin-bottom: 0.8rem;
    }

.text-light-emphasis {
    color: #bbb !important;
}

/* ============================================
   IMAGES & MEDIA
   ============================================ */

img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

    img:hover {
        transform: scale(1.03);
    }

.card-img-top {
    transition: transform 0.4s ease-in-out;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* ============================================
   FORMS
   ============================================ */

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--arbiyo-green);
        box-shadow: 0 0 0 0.2rem rgba(107, 165, 57, 0.25);
    }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   SPACING UTILITIES
   ============================================ */

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

/* ============================================
   BACKGROUND COLORS
   ============================================ */

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: var(--arbiyo-dark) !important;
}

/* ============================================
   BORDER RADIUS UTILITIES
   ============================================ */

.rounded-pill {
    border-radius: 50px !important;
}

/* ============================================
   SCROLL ANIMATIONS - AOS MODIFICATIONS
   ============================================ */

[data-aos] {
    opacity: 0;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

/* ============================================
   PROCESS SECTION STYLES
   ============================================ */

.process-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 165, 57, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

    .process-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(107, 165, 57, 0.2), transparent);
        transition: left 0.6s ease;
        z-index: 0;
    }

    .process-card:hover::before {
        left: 100%;
    }

    .process-card:hover {
        background: rgba(107, 165, 57, 0.15);
        border-color: var(--arbiyo-green);
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(107, 165, 57, 0.3);
    }

.step-header {
    position: relative;
    z-index: 1;
}

.step-number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--arbiyo-green), #5a9530);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(107, 165, 57, 0.4);
    transition: all 0.4s ease;
}

.process-card:hover .step-number-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(107, 165, 57, 0.6);
}

.step-num {
    display: block;
    line-height: 1;
}

.step-title {
    font-size: 1.3rem;
    color: white;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.process-card:hover .step-title {
    color: var(--arbiyo-green);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--arbiyo-green);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.process-card:hover .step-icon {
    font-size: 3rem;
    opacity: 1;
    transform: scale(1.2) rotate(-10deg);
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bbb;
    transition: color 0.3s ease;
    margin: 1rem 0;
}

.process-card:hover .step-description {
    color: #ddd;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--arbiyo-green);
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 1.5rem;
}

.process-card:hover .step-arrow {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .step-arrow {
        opacity: 0 !important;
    }
}

@media (max-width: 768px) {
    .process-card {
        padding: 1.5rem;
    }

    .step-number-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .process-card:hover {
        transform: translateY(-10px);
    }

        .process-card:hover .step-number-circle {
            transform: scale(1.1) rotate(5deg);
        }

        .process-card:hover .step-icon {
            font-size: 2.5rem;
        }
}

/* ============================================
   ACCORDION STYLES
   ============================================ */

.accordion-button {
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 1rem !important;
    padding: 1rem;
    font-weight: 600;
    color: var(--arbiyo-dark);
    transition: var(--transition);
}

    .accordion-button:not(.collapsed) {
        background-color: var(--arbiyo-green);
        border-color: var(--arbiyo-green);
        color: white;
        box-shadow: 0 4px 12px rgba(107, 165, 57, 0.2);
    }

    .accordion-button:focus {
        border-color: var(--arbiyo-green);
        box-shadow: 0 0 0 0.25rem rgba(107, 165, 57, 0.25);
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.accordion-item {
    border: none !important;
}

/* ============================================
   MISC
   ============================================ */

.display-4 {
    font-weight: 800;
}

.display-5 {
    font-weight: 800;
    font-size: 2.5rem;
}

.fw-bold {
    font-weight: 700 !important;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   CONTAINER MAX WIDTH
   ============================================ */

.container {
    max-width: 1200px;
}

/* ============================================
   LINE & DIVIDERS
   ============================================ */

.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ============================================
   MOBILE-FIRST RESPONSIVE UTILITIES
   ============================================ */

/* Touch-friendly buttons and clickable elements */
@media (max-width: 768px) {
    /* Ensure minimum touch target size (44x44px) */
    .btn, a, button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent text selection issues */
    button, .btn, a {
        -webkit-user-select: none;
        user-select: none;
    }

    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Disable hover states on mobile */
    .btn:hover {
        transform: none;
    }

    .card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }

    /* Reduce padding on mobile */
    .card {
        padding: 1rem;
    }

    /* Optimize form inputs for mobile */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        width: 100%;
    }

    /* Optimize navbar for mobile */
    .navbar-nav .nav-link {
        padding: 0.5rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .navbar-nav .nav-link:last-child {
            border-bottom: none;
        }

    /* Optimize hero section for mobile */
    .hero-section {
        text-align: center;
    }

        .hero-section .row {
            flex-direction: column-reverse;
        }

    /* Optimize blog cards for mobile */
    .card-body {
        padding: 1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 300px;
    }

    section {
        padding: 1.5rem 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }
}

/* ============================================
   TEXT ON GREEN BACKGROUND - IMPROVED VISIBILITY
   ============================================ */

/* White text for text on green background */
.bg-arbiyo-green .display-5,
.bg-arbiyo-green h1,
.bg-arbiyo-green h2,
.bg-arbiyo-green h3,
.bg-arbiyo-green h4,
.bg-arbiyo-green h5,
.bg-arbiyo-green h6,
.bg-arbiyo-green p,
.bg-arbiyo-green .lead {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Specific class for white text with shadow on green */
.text-on-green {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.text-on-green-light {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ============================================
   NAVBAR OPTIMIZATION
   ============================================ */

/* Navbar genel stilleri */
.navbar {
    padding: 0.5rem 0 !important;
}

/* Navbar brand - logo ve ARBIYO yazısı */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 !important;
}

    /* Logo resmi - genişlik ve yükseklik optimize */
    .navbar-brand img {
        max-width: 1148px;
        height: auto;
        width: auto;
        max-height: 90px;
        object-fit: contain;
    }

    /* Navbar brand text */
    .navbar-brand span {
        font-size: 1.2rem;
        white-space: nowrap;
    }

/* Mobile navbar için */
@media (max-width: 991px) {
    .navbar {
        padding: 0.4rem 0 !important;
    }


    .navbar-brand span {
        font-size: 1.1rem;
    }
}

/* ============================================
   CTA SECTION - PROFESSIONAL STYLING
   ============================================ */

/* CTA Section Container */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

    .cta-section .row {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .cta-section .col-lg-7 {
        flex: 0 0 calc(58.333% - 1rem);
    }

    .cta-section .col-lg-5 {
        flex: 0 0 calc(41.667% - 1rem);
    }

@media (max-width: 991px) {
    .cta-section .col-lg-7,
    .cta-section .col-lg-5 {
        flex: 0 0 100%;
    }

    .cta-section .col-lg-7 {
        margin-bottom: 2rem;
    }
}

/* CTA Card - Simplified */
.cta-card {
    background: linear-gradient(135deg, #fff 0%, #f5f7fa 100%);
    border: 2px solid #e0e0e0;
    border-left: 5px solid #6BA539;
    transition: all 0.3s ease;
    max-width: 100%;
}

    .cta-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(107, 165, 57, 0.25) !important;
        border-color: #6BA539;
    }

/* CTA Icon Circle */
.cta-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(107, 165, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-icon-circle {
    background: rgba(107, 165, 57, 0.15);
    transform: scale(1.1) rotate(5deg);
}

/* Button Styling - Updated for Light Button */
.btn-light {
    background-color: #ffffff;
    color: #6BA539;
    border: 2px solid #6BA539;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 165, 57, 0.2);
}

    .btn-light:hover {
        background-color: #6BA539;
        color: white;
        box-shadow: 0 8px 25px rgba(107, 165, 57, 0.4);
        transform: translateY(-2px);
    }

.btn-outline-arbiyo-green {
    color: #6BA539;
    border: 2px solid #6BA539;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-arbiyo-green:hover {
        background-color: #6BA539;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(107, 165, 57, 0.3);
    }

/* CTA Card Custom Buttons */
.cta-card .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.cta-card .btn-arbiyo-green {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

/* Typography Utilities */
.fw-500 {
    font-weight: 500;
}

.text-on-green {
    color: white;
}

/* CTA Text Highlight */
.cta-section h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE CTA SECTION
   ============================================ */

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0 !important;
    }

        .cta-section h2 {
            font-size: 2rem;
        }

    .cta-card {
        padding: 2rem !important;
    }

    .cta-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .btn-light {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }

    .cta-section .row {
        gap: 2rem;
    }

    .cta-section .col-lg-7 {
        margin-bottom: 2rem;
    }
}

/* ============================================
   REGION CARDS - BUTTON FIX
   ============================================ */

.btn-outline-arbiyo-green {
    color: var(--arbiyo-green) !important;
    border-color: var(--arbiyo-green) !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

    .btn-outline-arbiyo-green:hover {
        color: var(--arbiyo-green) !important;
        border-color: var(--arbiyo-green) !important;
        background-color: rgba(107, 165, 57, 0.1) !important;
    }

    .btn-outline-arbiyo-green:focus {
        color: var(--arbiyo-green) !important;
        border-color: var(--arbiyo-green) !important;
        box-shadow: 0 0 0 0.25rem rgba(107, 165, 57, 0.25) !important;
    }

.btn-outline-arbiyo-white {
    color: white !important;
    border-color: var(--arbiyo-green) !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

    .btn-outline-arbiyo-white:hover {
        color: white !important;
        border-color: var(--arbiyo-green) !important;
        background-color: rgba(107, 165, 57, 0.1) !important;
    }

    .btn-outline-arbiyo-white:focus {
        color: white !important;
        border-color: var(--arbiyo-green) !important;
        box-shadow: 0 0 0 0.25rem rgba(107, 165, 57, 0.25) !important;
    }
