:root {
    --primary-color: #e53935;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
}

.blog-details-area {
    background-color: var(--bg-light);
    font-family: 'Inter', sans-serif;
}

.blog-article-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.blog-featured-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.02);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    line-height: 1.2;
    min-width: 70px;
}

.blog-date-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-date-badge span {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
}

.blog-header {
    margin-bottom: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-meta-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.blog-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
}

.blog-content-body {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.8;
}

.blog-content-body p {
    margin-bottom: 20px;
}

.blog-content-body h2, .blog-content-body h3, .blog-content-body h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.recent-post-content h5 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Categories Widget */
.category-list li {
    margin-bottom: 12px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

/* Related Posts */
.related-posts-area {
    margin-top: 50px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.related-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-thumb {
    height: 200px;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.related-content h5 a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-content h5 a:hover {
    color: var(--primary-color);
}

.related-date {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .blog-article-card {
        padding: 25px;
    }
    .blog-title {
        font-size: 26px;
    }
}

.blog-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-card-modern {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    min-height: 260px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    text-decoration: none;
}

.blog-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.blog-card__media {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100%;
    overflow: hidden;
}

.blog-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    transition: background 0.3s ease;
}

.blog-card-modern:hover .blog-card__media::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-modern:hover .blog-card__media img {
    transform: scale(1.05);
}

.blog-card__date {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 2;
    background: #fff;
    color: var(--text-dark);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 65px;
}

.blog-card__date .day {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.blog-card__date .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-card__body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__meta i {
    color: var(--primary-color);
}

.blog-title-link {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.2s;
    text-decoration: none;
}

.blog-title-link:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__actions {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.blog-chip {
    background: #f0f2f5;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.read-more-btn:hover {
    color: #c62828; 
    gap: 8px;
}

/* Pagination Customization */
.pagination {
    margin-top: 40px;
    gap: 5px;
}

.page-link {
    border: none;
    background: #fff;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 0 2px;
    transition: all 0.2s;
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.page-link:hover {
    background: #eee;
    color: var(--primary-color);
}

@media(max-width: 991px){
    .blog-card-modern {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .blog-card__media {
        height: 220px;
        min-height: 220px;
    }
    .blog-card__body {
        padding: 25px;
    }
}

.modern-cta-box {
    background: linear-gradient(135deg, #0b1424 0%, #1a2a44 100%) !important;
    border-radius: 24px !important;
    padding: 50px 60px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
}

.modern-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.03) 100%);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.modern-cta-box .icon {
    width: 70px;
    height: 70px;
    background: rgba(229, 57, 53, 0.15) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-cta-box:hover .icon {
    background: var(--primary-color) !important;
    transform: scale(1.1) rotate(-10deg);
}

.modern-cta-box .icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.modern-cta-box:hover .icon i {
    color: #fff;
}

.modern-cta-box .content span {
    color: #9fb3d1 !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.modern-cta-box .content h3 {
    margin: 0;
    line-height: 1.2;
}

.modern-cta-box .content h3 a {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.modern-cta-box .content h3 a:hover {
    color: #1dd1a1 !important;
}

.modern-cta-box .cta-btn .default-btn {
    background: var(--primary-color);
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
}

.modern-cta-box .cta-btn .default-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .modern-cta-box {
        padding: 40px 30px !important;
        text-align: center;
    }
    .modern-cta-box .d-md-flex {
        flex-direction: column;
        gap: 30px;
    }
    .modern-cta-box .d-flex {
        flex-direction: column;
        justify-content: center;
    }
    .modern-cta-box .icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .modern-cta-box .cta-btn {
        text-align: center !important;
        margin-top: 30px;
    }
}

.modern-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.modern-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.package-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-package-card:hover .package-thumb img {
    transform: scale(1.08);
}

.package-duration-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.package-duration-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.package-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-body h3 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.package-body h3 a {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-body h3 a:hover {
    color: var(--primary-color);
}

.package-meta-row {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.package-price small {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.package-price span {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
}

.package-btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.modern-package-card:hover .package-btn-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .package-thumb {
        height: 200px;
    }
    .package-body {
        padding: 20px;
    }
    .package-body h3 a {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .aviation-hero-form-wrapper {
        max-width: 95%;
        margin: 0 auto;
        padding: 20px;
        background: #ffffff;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .aviation-hero-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .aviation-hero-subtitle {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .aviation-hero-form-wrapper h3 {
        font-size: 17px;
        margin-bottom: 14px;
        font-weight: 700;
        color: #111827;
    }

    .aviation-hero-form-wrapper .form-group {
        margin-bottom: 12px;
    }

    .aviation-hero-form-wrapper .form-control {
        padding-left: 14px;
        font-size: 13px;
        height: 42px;
        border: none;
        border-radius: 12px;
        background: #f5f5f5;
        color: #555555;
    }

    .aviation-hero-form-wrapper .form-control::placeholder {
        color: rgba(85, 85, 85, 0.5);
    }

    .aviation-hero-form-wrapper textarea {
        height: 85px;
        padding: 12px;
        background: #f5f5f5;
        border-radius: 12px;
        border: none;
    }

    .aviation-hero-form-wrapper .default-btn {
        border-radius: 12px;
        height: auto;
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .aviation-hero-form-wrapper {
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .aviation-hero-form-wrapper .g-2 {
        gap: 10px !important;
    }

    .aviation-hero-form-wrapper .form-group {
        margin-bottom: 12px;
    }

    .aviation-hero-form-wrapper textarea {
        resize: none;
        min-height: 80px;
    }
}

.gallery-carousel-area {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gallery-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.05) 0%, rgba(26, 58, 82, 0.05) 100%);
    z-index: 0;
}

.gallery-carousel-area > .container {
    position: relative;
    z-index: 1;
}

.gallery-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a3a52;
    margin: 15px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.gallery-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.animated-title {
    font-size: 14px !important;
    color: #e53935;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-carousel-wrapper {
    position: relative;
    padding: 20px 0;
}

.gallery-carousel {
    position: relative;
}

.gallery-item-card {
    padding: 12px;
    height: auto;
}

.gallery-card-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f5f5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item-card:hover .gallery-card-inner {
    box-shadow: 0 16px 48px rgba(229, 57, 53, 0.15);
    transform: translateY(-8px);
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-card-inner:hover .gallery-card-img {
    transform: scale(1.1) rotate(0.5deg);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(229, 57, 53, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

.gallery-card-inner:hover .gallery-card-overlay {
    opacity: 1;
    backdrop-filter: blur(2px);
}

.overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gallery-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    color: #e53935;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: btnPulse 0.6s ease-out forwards;
}

.gallery-card-inner:hover .gallery-expand-btn {
    background: white;
    color: #d32f2f;
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.gallery-expand-btn svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.gallery-card-inner:hover .gallery-expand-btn svg {
    transform: scale(1.1);
}

@keyframes btnPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-carousel .owl-stage-outer {
    padding: 20px 0;
}

.gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    padding: 0;
    pointer-events: none;
}

.gallery-carousel .owl-nav button {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: white !important;
    color: #e53935 !important;
    border: 2px solid #e53935 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-carousel .owl-nav button:hover {
    background: #e53935 !important;
    color: white !important;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.3);
}

.gallery-carousel .owl-prev {
    left: 0;
}

.gallery-carousel .owl-next {
    right: 0;
}

.gallery-carousel .owl-nav button span {
    font-size: 24px;
    font-weight: bold;
}

.gallery-carousel .owl-nav .owl-prev:before {
    content: "‹";
}

.gallery-carousel .owl-nav .owl-next:before {
    content: "›";
}

.gallery-carousel .owl-dots {
    position: relative;
    text-align: center;
    padding-top: 40px;
    margin-top: 30px;
    padding-bottom: 0;
}

.gallery-carousel .owl-dot {
    background: #ddd !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-carousel .owl-dot:hover {
    background: #e53935 !important;
    transform: scale(1.2);
}

.gallery-carousel .owl-dot.active {
    background: #e53935 !important;
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-main-title {
        font-size: 40px;
    }

    .gallery-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
}

@media (max-width: 768px) {
    .gallery-carousel-area {
        padding: 60px 0;
    }

    .gallery-main-title {
        font-size: 32px;
    }

    .gallery-carousel .owl-nav {
        width: 100%;
        left: 0;
        padding: 0 -10px;
    }

    .gallery-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-width: 1.5px;
    }

    .gallery-expand-btn {
        width: 50px;
        height: 50px;
    }

    .gallery-expand-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 576px) {
    .gallery-carousel-area {
        padding: 50px 0;
    }

    .gallery-main-title {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 14px;
    }

    .gallery-carousel .owl-nav {
        display: none;
    }

    .gallery-carousel .owl-dots {
        padding-top: 30px;
        margin-top: 20px;
    }

    .gallery-item-card {
        padding: 8px;
    }

    .gallery-card-overlay {
        opacity: 0.9;
    }

    .gallery-card-inner:hover .gallery-card-overlay {
        opacity: 1;
    }

    .gallery-expand-btn {
        width: 45px;
        height: 45px;
    }

    .gallery-expand-btn svg {
        width: 20px;
        height: 20px;
    }
}

.gallery-expand-btn:focus,
.gallery-carousel .owl-nav button:focus {
    outline: 2px solid #e53935;
    outline-offset: 2px;
}