/*
* ARGE VİNÇ - Bandırma Vinç Kiralama
* CSS Stylesheet
*/

:root {
    --primary-color: #008ED4;
    --primary-dark: #0071a9;
    --primary-light: #4cb0e4;
    --secondary-color: #333333;
    --text-color: #444444;
    --light-gray: #f5f5f5;
    --border-color: #e1e1e1;
    --white: #ffffff;
    --black: #000000;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 6px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.ar-primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
}

.ar-primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ar-secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
}

.ar-secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header Styles */
#ar-header {
    position: relative;
    z-index: 1000;
}

.ar-top-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 0;
}

.ar-contact-info, .ar-social-media {
    display: flex;
    align-items: center;
}

.ar-contact-link {
    color: var(--white);
    font-size: 0.9rem;
}

.ar-contact-link:hover {
    color: var(--primary-light);
}

.ar-social-link {
    color: var(--white);
    margin-left: 15px;
    font-size: 1.1rem;
}

.ar-social-link:hover {
    color: var(--primary-light);
}

.ar-main-navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    transition: var(--transition);
}

.ar-main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0px;
    z-index: 12;
    overflow: visible;
}

@media screen and (max-width: 768px){
    .navbar-brand {
        right: 0px;
        width: 100px;
        height: 100px;
    }
    .ar-logo{
        width: 100px;
    }
}

.ar-logo {
    position: absolute;
    width: 180px;
    object-fit: cover;
    overflow: auto;
    z-index: 1233123123;
}

.ar-navbar-nav {
    margin-left: auto;
}

.ar-nav-item {
    margin: 0 5px;
}

.ar-nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.ar-nav-link:hover, .ar-nav-link.active {
    color: var(--primary-color);
}

.ar-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.ar-nav-link:hover::after, .ar-nav-link.active::after {
    width: 70%;
    left: 15%;
}

.ar-dropdown-menu {
    border: none;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 10px 0;
}

.ar-dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.ar-dropdown-item:hover, .ar-dropdown-item:focus {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Hero Section */
.ar-hero {
    padding: 100px 0 70px;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.ar-hero-content {
    padding-right: 20px;
}

.ar-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ar-hero-title .ar-typed-text {
    color: var(--primary-color);
    font-weight: 700;
}

.ar-hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.ar-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Section */
.ar-services {
    padding: 80px 0;
}

.ar-section-title {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.ar-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.ar-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.ar-service-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ar-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ar-service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.ar-service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ar-service-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
    flex-grow: 1;
}

.ar-service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.ar-service-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.ar-service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.ar-service-link:hover i {
    transform: translateX(5px);
}

/* Why Us Section */
.ar-why-us {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.ar-feature-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.ar-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.ar-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.ar-feature-card:hover .ar-feature-icon {
    transform: scale(1.1);
}

.ar-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ar-feature-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.9;
}

/* Locations Section */
.ar-locations {
    padding: 80px 0;
}

.ar-location-card {
    background-color: var(--primary-color);
    border-radius: var(--radius);
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ar-location-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

.ar-location-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ar-location-link {
    color: var(--white);
    font-size: 1.5rem;
    margin-top: 5px;
    display: inline-block;
}

/* Contact CTA Section */
.ar-contact-cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.ar-cta-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.ar-cta-text {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.1rem;
}

.ar-cta-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius);
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.ar-cta-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.ar-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding-top: 50px;
}

.ar-footer-company {
    margin-bottom: 20px;
}

.ar-footer-logo {
    max-height: 60px;
    margin-bottom: 15px;
}

.ar-footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.ar-footer-header {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ar-footer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.ar-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-footer-contact-item {
    margin-bottom: 12px;
}

.ar-footer-contact-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.ar-footer-contact-link i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 4px;
}

.ar-footer-contact-link:hover {
    color: var(--white);
}

.ar-footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ar-footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.ar-footer-social-link i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.ar-footer-social-link:hover {
    color: var(--white);
}

.ar-footer-service-links {
    margin-top: 20px;
}

.ar-footer-service-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.ar-footer-service-link:hover {
    color: var(--primary-color);
}

.ar-copyright {
    background-color: #222;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 30px;
}

.ar-copyright a {
    color: var(--primary-color);
}

/* Back to Top Button */
.ar-back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.ar-back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.ar-back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Whatsapp Button */
.ar-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.ar-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

/* Location Button */
.ar-location-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.ar-location-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
    color: var(--white);
}

/* Responsive Media Queries */
@media (max-width: 1199.98px) {
    .ar-hero-title {
        font-size: 2.2rem;
    }
    .ar-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .ar-hero {
        padding: 80px 0 50px;
    }
    .ar-hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .ar-services, .ar-why-us, .ar-locations {
        padding: 60px 0;
    }
    .ar-nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ar-hero-title {
        font-size: 1.8rem;
    }
    .ar-hero-description {
        font-size: 1rem;
    }
    .ar-section-title {
        font-size: 1.8rem;
    }
    .ar-contact-info, .ar-social-media {
        justify-content: center;
    }
    .ar-top-header .col-md-6:first-child {
        margin-bottom: 10px;
    }
    .ar-cta-title {
        font-size: 1.5rem;
    }
    .ar-location-btn {
        left: auto;
        bottom: 130px;
        right: 20px;
    }
    .ar-whatsapp-btn {
        bottom: 25px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .ar-hero-title {
        font-size: 1.6rem;
    }
    .ar-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .ar-hero-buttons .ar-primary-btn, 
    .ar-hero-buttons .ar-secondary-btn {
        width: 100%;
    }
    .ar-section-title {
        font-size: 1.6rem;
    }
    .ar-section-subtitle {
        font-size: 1rem;
    }
    .ar-cta-title {
        font-size: 1.3rem;
    }
}

/* Page Header Style */
.ar-page-header {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, rgba(0, 142, 212, 0.9) 0%, rgba(0, 113, 169, 0.9) 100%), url('/images/patterns/bg-bottom-footer.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 50px;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.ar-page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    z-index: 1;
}

.ar-page-title {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.ar-breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.ar-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.ar-breadcrumb .breadcrumb-item a {
    color: var(--white);
    font-weight: 500;
}

.ar-breadcrumb .breadcrumb-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.ar-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.ar-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Service Detail Style */
.ar-service-detail {
    padding: 70px 0;
}

.ar-service-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.ar-service-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.ar-service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ar-service-features h3,
.ar-service-applications h3,
.ar-service-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ar-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ar-service-list li {
    padding: 8px 0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ar-service-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.ar-service-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.1rem;
}

.ar-service-sidebar {
    position: sticky;
    top: 20px;
}

.ar-widget {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.ar-widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.ar-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-widget-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ar-widget-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.ar-widget-list li a {
    color: var(--text-color);
    padding: 8px 0;
    display: block;
    transition: var(--transition);
    position: relative;
}

.ar-widget-list li a i {
    margin-right: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ar-widget-list li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.ar-widget-list li a:hover i {
    transform: translateX(3px);
}

.ar-widget-list li.active a {
    color: var(--primary-color);
    font-weight: 600;
}

.ar-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-contact-list li {
    display: flex;
    margin-bottom: 15px;
}

.ar-contact-list li:last-child {
    margin-bottom: 0;
}

.ar-contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 5px;
}

.ar-contact-list li div span {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 5px;
}

.ar-contact-list li div p {
    margin: 0;
    font-weight: 500;
}

.ar-contact-list li div p a {
    color: var(--text-color);
    transition: var(--transition);
}

.ar-contact-list li div p a:hover {
    color: var(--primary-color);
}

.ar-cta-widget {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.ar-cta-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/pattern-light.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.ar-cta-widget i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ar-cta-widget h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ar-cta-widget p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.ar-cta-widget .ar-primary-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.ar-cta-widget .ar-primary-btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.ar-related-services {
    padding: 70px 0;
    background-color: var(--light-gray);
}

/* Enhanced Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Enhanced Cards */
.ar-image-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.ar-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ar-image-card-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.ar-image-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ar-image-card:hover .ar-image-card-img img {
    transform: scale(1.1);
}

.ar-image-card-content {
    padding: 25px;
    background-color: var(--white);
}

.ar-image-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.ar-image-card-text {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.ar-image-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ar-image-card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.ar-image-card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.ar-image-card-link:hover i {
    transform: translateX(5px);
}

/* Enhanced Buttons */
.ar-btn-shine {
    position: relative;
    overflow: hidden;
}

.ar-btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.ar-btn-shine:hover::after {
    opacity: 1;
    left: 100%;
    top: 100%;
}

.ar-btn-pulse {
    animation: pulse 2s infinite;
}