﻿/* ============================================
   DEVRIM TESISAT - MODERN WEBSITE STYLES
   ============================================ */

/* ============================================
   CSS VARIABLES - Brand Colors & Theme
   ============================================ */
:root {
    --primary-color: #004aad;
    --accent-color: #00b4ff;
    --text-color: #ffffff;
    --gray-color: #d9d9d9;
    --dark-bg: #0a0e27;
    --light-bg: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #004aad 0%, #00b4ff 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1e3f 100%);
    --shadow-sm: 0 2px 10px rgba(0, 74, 173, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 74, 173, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 74, 173, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 1.5rem 0;
    background: transparent;
    transition: var(--transition);
    z-index: 1000;
}

    .navbar.scrolled {
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
    }

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.brand-text {
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transform: translateX(-50%);
        transition: var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 70%;
    }

/* Mobile navbar - always solid when menu is open */
@media (max-width: 991px) {
    .navbar {
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
    }

    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    background-image: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2069');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(26, 30, 63, 0.85) 100%);
    background-blend-mode: multiply;
    pointer-events: none;
}

    .hero-overlay::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(0, 180, 255, 0.15) 0%, transparent 50%);
    }

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.pipe-svg {
    width: 100%;
    height: 100%;
}

.pipe-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.water-drop {
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-line-1,
.hero-title-line-2 {
    display: block;
}

.hero-title-line-2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn,
.hero-btn-outline {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.hero-btn {
    background: var(--gradient-primary);
    color: var(--text-color);
    border: none;
}

    .hero-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 180, 255, 0.4);
    }

.hero-btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
}

    .hero-btn-outline:hover {
        background: var(--accent-color);
        color: var(--dark-bg);
    }

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-color);
    font-size: 0.95rem;
}

    .feature-item i {
        color: var(--accent-color);
        font-size: 1.5rem;
    }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-color);
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent-color);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.service-title {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .service-list li {
        padding: 0.5rem 0;
        color: #555;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .service-list i {
        color: var(--accent-color);
        font-size: 0.9rem;
    }

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

    .service-link:hover {
        color: var(--accent-color);
        gap: 1rem;
    }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #fff;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    z-index: -1;
}

.about-image {
    border-radius: 20px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .feature-icon-box i {
        font-size: 1.5rem;
        color: var(--text-color);
    }

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
}

.about-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    border: none;
}

    .about-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 180, 255, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .stat-icon i {
        font-size: 2rem;
        color: var(--accent-color);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: #fff;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.95;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: var(--text-color);
    padding: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    margin-bottom: 1rem;
}

.gallery-content i {
    font-size: 2rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    opacity: 1;
    visibility: visible;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent-color);
        background: #fff;
    }

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    position: relative;
    flex-shrink: 0;
}

    .testimonial-avatar img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 3px solid var(--accent-color);
    }

.google-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

    .google-badge i {
        font-size: 0.75rem;
        color: #4285F4;
    }

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

    .testimonial-rating i {
        color: #FFA500;
        font-size: 0.9rem;
    }

.testimonial-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
}

    .testimonial-text::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: -5px;
        font-size: 3rem;
        color: var(--accent-color);
        opacity: 0.2;
        font-family: Georgia, serif;
        line-height: 1;
    }

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
}

.testimonial-source {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Google Rating Summary */
.google-rating-summary {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.rating-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .rating-icon i {
        font-size: 2.5rem;
        color: #4285F4;
    }

.rating-content {
    flex: 1;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

    .rating-score .score {
        font-size: 3rem;
        font-weight: 800;
        color: var(--text-color);
        line-height: 1;
    }

    .rating-score .stars {
        display: flex;
        gap: 0.25rem;
    }

        .rating-score .stars i {
            color: #FFA500;
            font-size: 1.2rem;
        }

.rating-text {
    color: var(--gray-color);
    margin: 0;
    font-size: 1rem;
}

    .rating-text strong {
        color: var(--accent-color);
    }

.rating-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    white-space: nowrap;
}

    .rating-btn:hover {
        background: var(--accent-color);
        color: var(--dark-bg);
        transform: translateY(-3px);
    }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--light-bg);
}

.contact-info {
    background: var(--gradient-dark);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

    .contact-info-item:last-child {
        margin-bottom: 0;
    }

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 180, 255, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-info-icon i {
        font-size: 1.5rem;
        color: var(--accent-color);
    }

.contact-info-content h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

    .form-group i {
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--accent-color);
        font-size: 1.1rem;
    }

    .form-group textarea + i {
        top: 1.5rem;
        transform: none;
    }

.form-control {
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
}

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.1);
        outline: none;
    }

    .form-control::placeholder {
        color: #999;
    }

.submit-btn {
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    border: none;
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 0;
}

/* .map-section iframe {
    filter: grayscale(100%);
    transition: var(--transition);
}

.map-section iframe:hover {
    filter: grayscale(0%);
} */

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gradient-dark);
    padding: 80px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

    .footer-brand i {
        font-size: 1.8rem;
        color: var(--accent-color);
    }

.footer-description {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: var(--transition);
}

    .social-link:hover {
        background: var(--accent-color);
        color: var(--dark-bg);
        transform: translateY(-5px);
    }

.footer-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--gray-color);
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

.footer-contact {
    list-style: none;
}

    .footer-contact li {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: var(--gray-color);
    }

    .footer-contact i {
        color: var(--accent-color);
        font-size: 1.2rem;
        width: 20px;
    }

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-color);
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .footer-bottom-links a {
        color: var(--gray-color);
    }

        .footer-bottom-links a:hover {
            color: var(--accent-color);
        }

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

/* ============================================
   MOBILE PHONE BUTTON - Full Width Bottom Bar
   ============================================ */
.mobile-phone-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #00b853 0%, #00d563 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 -5px 25px rgba(0, 184, 83, 0.4);
    transition: var(--transition);
    z-index: 1000;
    border: none;
    animation: phonePulse 2s ease-in-out infinite;
}

    .mobile-phone-btn i {
        font-size: 1.5rem;
        animation: phoneShake 1.5s ease-in-out infinite;
    }

    .mobile-phone-btn .phone-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.3;
    }

.phone-text strong {
    font-size: 1.2rem;
    display: block;
}

.phone-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.mobile-phone-btn:hover,
.mobile-phone-btn:active {
    color: white;
    background: linear-gradient(135deg, #00d563 0%, #00b853 100%);
    box-shadow: 0 -8px 35px rgba(0, 184, 83, 0.6);
}

@keyframes phonePulse {
    0%, 100% {
        box-shadow: 0 -5px 25px rgba(0, 184, 83, 0.4);
    }

    50% {
        box-shadow: 0 -5px 35px rgba(0, 184, 83, 0.6);
    }
}

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30% {
        transform: rotate(-10deg);
    }

    20%, 40% {
        transform: rotate(10deg);
    }

    50%, 60%, 70%, 80%, 90% {
        transform: rotate(0deg);
    }
}

/* Show mobile phone button on mobile and tablet devices */
@media (max-width: 991px) {
    .mobile-phone-btn {
        display: flex;
    }

    /* Adjust scroll to top button when phone bar is visible */
    .scroll-to-top {
        bottom: 85px;
    }
}

/* Adjust for smaller screens */
@media (max-width: 576px) {
    .mobile-phone-btn {
        padding: 15px 15px;
        font-size: 1rem;
        gap: 12px;
    }

        .mobile-phone-btn i {
            font-size: 1.3rem;
        }

    .phone-text strong {
        font-size: 1.1rem;
    }

    .phone-text span {
        font-size: 0.85rem;
    }
}

/* ============================================
   SERVICE DETAIL PAGE STYLES
   ============================================ */

/* Breadcrumb Section */
.breadcrumb-section {
    padding: 120px 0 30px;
    background: var(--light-bg);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.95rem;
    color: #666;
}

    .breadcrumb-item a {
        color: var(--primary-color);
        text-decoration: none;
        transition: var(--transition);
    }

        .breadcrumb-item a:hover {
            color: var(--accent-color);
        }

    .breadcrumb-item.active {
        color: #333;
        font-weight: 600;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: "›";
        color: #999;
        padding: 0 0.5rem;
    }

/* Service Hero Section */
.service-hero {
    padding: 80px 0;
    background: #fff;
}

.service-hero-content {
    padding-right: 2rem;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 180, 255, 0.1);
    border: 2px solid var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

    .service-hero-badge i {
        font-size: 1.2rem;
        color: var(--accent-color);
    }

.service-hero-title {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-weight: 500;
}

    .hero-feature-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .service-hero-image img {
        border-radius: 20px;
        width: 100%;
    }

.service-hero-badge-floating {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .badge-icon i {
        font-size: 1.5rem;
        color: var(--text-color);
    }

.badge-content {
    display: flex;
    flex-direction: column;
    color: var(--text-color);
}

    .badge-content strong {
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1;
    }

    .badge-content span {
        font-size: 0.85rem;
    }

/* Service Details Section */
.service-details-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-content-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.content-title {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.content-subtitle {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin: 2rem 0 1.5rem;
}

.content-text {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-image-wrapper {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
}

    .content-image-wrapper img {
        width: 100%;
        border-radius: 15px;
    }

/* Service Detail Items */
.service-detail-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
}

    .service-detail-item:hover {
        background: #fff;
        box-shadow: var(--shadow-sm);
        transform: translateY(-5px);
    }

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .detail-icon i {
        font-size: 1.5rem;
        color: var(--text-color);
    }

.detail-content h4 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.detail-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.why-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.why-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 3rem;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 29px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--accent-color);
    }

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

    .timeline-item:last-child {
        padding-bottom: 0;
    }

.timeline-marker {
    position: absolute;
    left: -3rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--light-bg);
}

    .timeline-marker i {
        font-size: 1.3rem;
        color: var(--text-color);
    }

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-bg);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--light-bg);
    color: var(--dark-bg);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

    .accordion-button:not(.collapsed) {
        background: var(--gradient-primary);
        color: var(--text-color);
    }

    .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

    .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;
    background: #fff;
    color: #666;
    line-height: 1.8;
}

/* Sidebar Styles */
.sidebar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    font-weight: 700;
}

.sidebar-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sidebar-form .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
}

    .sidebar-form .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.1);
    }

/* Quick Contact Card */
.quick-contact-card {
    background: var(--gradient-dark);
    text-align: center;
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 180, 255, 0.1);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .quick-contact-icon i {
        font-size: 2rem;
        color: var(--accent-color);
    }

.quick-contact-card h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.quick-contact-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.quick-contact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

    .quick-contact-number:hover {
        color: var(--text-color);
    }

.quick-contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Price Card */
.price-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .price-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .price-list li:last-child {
            border-bottom: none;
        }

    .price-list i {
        color: var(--accent-color);
        font-size: 1.1rem;
    }

    .price-list span {
        color: #666;
        line-height: 1.5;
    }

.price-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

    .price-note i {
        color: var(--accent-color);
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .price-note p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
    }

/* Other Services List */
.other-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

    .other-service-item:hover {
        background: var(--gradient-primary);
        transform: translateX(5px);
    }

        .other-service-item:hover .service-icon-small {
            background: rgba(255, 255, 255, 0.2);
        }

        .other-service-item:hover .service-info h5,
        .other-service-item:hover .service-info span {
            color: var(--text-color);
        }

.service-icon-small {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

    .service-icon-small i {
        font-size: 1.3rem;
        color: var(--primary-color);
    }

.service-info h5 {
    font-size: 1rem;
    color: var(--dark-bg);
    margin-bottom: 0.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.service-info span {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(0, 180, 255, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn,
.cta-btn-outline {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Service Detail Page - Tablet */
@media (max-width: 992px) {
    .service-hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-content-card {
        padding: 2rem;
    }

    .process-timeline {
        padding-left: 2.5rem;
    }

    .timeline-marker {
        left: -2.5rem;
        width: 50px;
        height: 50px;
    }

    .process-timeline::before {
        left: 24px;
    }

    .why-item {
        gap: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

/* Testimonials - Tablet */
@media (max-width: 992px) {
    .google-rating-summary {
        padding: 2rem;
        gap: 1.5rem;
    }

    .rating-score .score {
        font-size: 2.5rem;
    }

    .rating-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    /* Testimonials Section - Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .google-rating-summary {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
    }

    .rating-content {
        text-align: center;
    }

    .rating-score {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

        .rating-score .score {
            font-size: 2rem;
        }

    .rating-text {
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 120px 0 60px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    /* Service Detail Page - Mobile */
    .breadcrumb-section {
        padding: 100px 0 20px;
    }

    .service-hero {
        padding: 60px 0;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-description {
        font-size: 1rem;
    }

    .service-hero-badge-floating {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.5rem;
    }

    .badge-content strong {
        font-size: 1.2rem;
    }

    .service-details-section {
        padding: 60px 0;
    }

    .service-content-card {
        padding: 1.5rem;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .content-subtitle {
        font-size: 1.3rem;
    }

    .service-detail-item {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-icon {
        width: 50px;
        height: 50px;
    }

    .why-item {
        flex-direction: column;
        gap: 1rem;
    }

    .why-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .process-timeline {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2rem;
        width: 40px;
        height: 40px;
    }

        .timeline-marker i {
            font-size: 1rem;
        }

    .process-timeline::before {
        left: 19px;
    }

    .faq-section {
        padding: 2rem 1.5rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .brand-icon {
        font-size: 1.4rem;
    }
}

/* ============================================
   NEW CONTACT SECTION - PHONE FOCUSED
   ============================================ */

/* Main Call Action Box */
.call-action-main {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 74, 173, 0.3);
}

    .call-action-main::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
        animation: pulse-bg 4s ease-in-out infinite;
    }

@keyframes pulse-bg {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.call-action-content {
    position: relative;
    z-index: 1;
}

.call-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .call-icon-wrapper i {
        font-size: 3rem;
        color: #fff;
        z-index: 2;
        animation: shake 1.5s ease-in-out infinite;
    }

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30% {
        transform: rotate(-10deg);
    }

    20%, 40% {
        transform: rotate(10deg);
    }

    50%, 100% {
        transform: rotate(0deg);
    }
}

.call-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: ring-pulse 2s ease-out infinite;
}

    .call-icon-ring.delay-1 {
        animation-delay: 0.5s;
    }

    .call-icon-ring.delay-2 {
        animation-delay: 1s;
    }

@keyframes ring-pulse {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }

    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }
}

.call-action-main h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.call-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

    .call-number:hover {
        color: #fff;
        transform: scale(1.05);
        text-shadow: 0 6px 30px rgba(0,0,0,0.3);
    }

.call-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-call {
    background: #fff;
    color: var(--primary-color);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

    .btn-call:hover {
        background: #fff;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

    .btn-call i {
        font-size: 1.3rem;
    }

/* Contact Cards New */
.contact-card-new {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 74, 173, 0.1);
    height: 100%;
}

    .contact-card-new:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-color);
    }

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .contact-card-icon i {
        font-size: 1.8rem;
        color: #fff;
    }

.contact-card-new h4 {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-card-link {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 15px;
    transition: var(--transition);
}

    .contact-card-link:hover {
        color: var(--accent-color);
    }

.contact-card-badge {
    display: inline-block;
    background: rgba(0, 180, 255, 0.1);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Info Box */
.info-box {
    background: var(--dark-bg);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    transition: var(--transition);
}

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(10, 14, 39, 0.4);
    }

.info-box-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .info-box-icon i {
        font-size: 1.5rem;
        color: #fff;
    }

.info-box-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-box-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.info-box-content strong {
    color: var(--accent-color);
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .call-action-main {
        padding: 50px 30px;
    }

    .call-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .call-action-main {
        padding: 40px 20px;
    }

    .call-number {
        font-size: 2.2rem;
    }

    .call-action-main h3 {
        font-size: 1.2rem;
    }

    .btn-call {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .call-icon-wrapper {
        width: 100px;
        height: 100px;
    }

        .call-icon-wrapper i {
            font-size: 2.5rem;
        }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .info-box-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .call-number {
        font-size: 1.8rem;
    }

    .contact-card-new {
        padding: 25px 20px;
    }

    .contact-card-link {
        font-size: 1.1rem;
    }
}

/* ============================================
   MEDIA GALLERY SECTION - Photos & Videos
   ============================================ */
.media-gallery-section {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

.media-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

    .media-gallery-header .content-title {
        margin-bottom: 0;
    }

.gallery-filter-tabs {
    display: flex;
    gap: 0.5rem;
}

.gallery-filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

    .gallery-filter-btn:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    .gallery-filter-btn.active {
        background: var(--gradient-primary);
        border-color: transparent;
        color: #fff;
    }

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.media-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--light-bg);
}

    .media-gallery-item img,
    .media-gallery-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .media-gallery-item:hover img,
    .media-gallery-item:hover video {
        transform: scale(1.1);
    }

.media-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 74, 173, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.media-gallery-item:hover .media-item-overlay {
    opacity: 1;
}

.media-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    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;
    transition: var(--transition);
}

.media-gallery-item:hover .media-item-icon {
    transform: translate(-50%, -50%) scale(1);
}

.media-item-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.media-item-info {
    transform: translateY(20px);
    transition: var(--transition);
}

.media-gallery-item:hover .media-item-info {
    transform: translateY(0);
}

.media-item-info h5 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.media-item-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Video indicator badge */
.video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    z-index: 2;
}

    .video-badge i {
        font-size: 0.7rem;
    }

/* Gallery Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

    .gallery-lightbox.active {
        display: flex;
    }

.lightbox-content {
    position: relative;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-media {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

    .lightbox-media.video-frame {
        width: 100%;
        aspect-ratio: 16/9;
    }

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
}

    .lightbox-close:hover {
        color: var(--accent-color);
        transform: rotate(90deg);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

    .lightbox-nav:hover {
        background: var(--accent-color);
    }

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
    color: #fff;
}

    .lightbox-caption h4 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .lightbox-caption p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        margin: 0;
    }

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Gallery Responsive */
@media (max-width: 992px) {
    .media-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .media-gallery-section {
        padding: 2rem 1.5rem;
    }

    .media-gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-filter-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .gallery-filter-btn {
        white-space: nowrap;
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }

    .media-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        top: auto;
        bottom: 2rem;
        transform: none;
    }

    .lightbox-prev {
        left: 2rem;
    }

    .lightbox-next {
        right: 2rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        position: fixed;
    }

    .lightbox-counter {
        top: 1rem;
        left: 1rem;
        position: fixed;
    }
}

@media (max-width: 480px) {
    .media-gallery-grid {
        grid-template-columns: 1fr;
    }

    .media-gallery-item {
        aspect-ratio: 16/10;
    }
}

/* ============================================
   GALLERY FILTER & VIDEO CARDS - Homepage
   ============================================ */

/* Gallery Filter Buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: transparent;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .filter-btn i {
        font-size: 1rem;
    }

    .filter-btn:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    .filter-btn.active {
        background: var(--gradient-primary);
        border-color: transparent;
        color: #fff;
    }

/* Gallery Item Wrapper for filtering */
.gallery-item-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .gallery-item-wrapper.hidden {
        display: none;
    }

/* NEW Gallery Card Style - Minimal Hover */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-card:hover {
        box-shadow: 0 15px 40px rgba(0, 74, 173, 0.25);
        transform: translateY(-5px);
    }

        .gallery-card:hover img {
            transform: scale(1.08);
        }

/* Card Badge (Video/Photo indicator) */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}

    .card-badge i {
        font-size: 0.7rem;
    }

    .card-badge.video-badge {
        background: rgba(255, 59, 48, 0.95);
        color: #fff;
    }

    .card-badge.photo-badge {
        background: rgba(0, 74, 173, 0.95);
        color: #fff;
    }

/* Hover Icon - Expand */
.card-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

    .card-hover-icon i {
        font-size: 1.5rem;
        color: var(--primary-color);
        transition: var(--transition);
    }

.gallery-card:hover .card-hover-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

    .gallery-card:hover .card-hover-icon i {
        color: var(--accent-color);
    }

/* Dark overlay on hover */
.gallery-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
    pointer-events: none;
}

.gallery-card:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

/* Video Play Button - Triangle */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

    .play-btn i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-left: 5px; /* Optical centering for play icon */
    }

.gallery-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-color);
    box-shadow: 0 12px 40px rgba(0, 180, 255, 0.4);
}

    .gallery-card:hover .play-btn i {
        color: #fff;
    }

@media (max-width: 768px) {
    .play-btn {
        width: 55px;
        height: 55px;
    }

        .play-btn i {
            font-size: 1.2rem;
            margin-left: 3px;
        }
}

/* Gallery CTA Box */
.gallery-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

    .gallery-cta p {
        color: var(--gray-color);
        margin: 0;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .gallery-cta p i {
            color: var(--accent-color);
            font-size: 1.3rem;
        }

    .gallery-cta .btn-primary {
        background: var(--gradient-primary);
        border: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

        .gallery-cta .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 180, 255, 0.4);
        }

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .gallery-card {
        height: 220px;
    }

    .card-hover-icon {
        width: 55px;
        height: 55px;
    }

        .card-hover-icon i {
            font-size: 1.2rem;
        }

    .gallery-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

        .gallery-cta p {
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .gallery-cta .btn-primary {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .gallery-card {
        height: 200px;
    }

    .card-badge {
        top: 10px;
        left: 10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* ============================================
   GALLERY LIGHTBOX - Full Screen Slider
   ============================================ */

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

    .gallery-lightbox.active {
        display: flex;
        opacity: 1;
    }

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.97);
    backdrop-filter: blur(10px);
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-close:hover {
        background: var(--accent-color);
        border-color: var(--accent-color);
        transform: rotate(90deg);
    }

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-nav:hover {
        background: var(--accent-color);
        border-color: var(--accent-color);
        transform: translateY(-50%) scale(1.1);
    }

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Lightbox Content */
.lightbox-content {
    position: relative;
    z-index: 5;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Counter */
.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Media Wrapper */
.lightbox-media-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-media {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .lightbox-media.video-frame {
        width: 80vw;
        max-width: 1000px;
        height: auto;
        max-height: 70vh;
        border-radius: 15px;
        background: #000;
    }

/* For iframe videos (YouTube, Vimeo) */
iframe.lightbox-media.video-frame {
    height: 56.25vw;
    max-height: 562px;
}

/* For local video files */
video.lightbox-media.video-frame {
    width: auto;
    max-width: 90vw;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* Caption */
.lightbox-caption {
    margin-top: 25px;
    text-align: center;
    color: #fff;
}

    .lightbox-caption h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .lightbox-caption p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin: 0;
    }

/* Thumbnails */
.lightbox-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80vw;
    overflow-x: auto;
    padding: 10px 0;
    z-index: 10;
}

.thumbnails-track {
    display: flex;
    gap: 10px;
    padding: 0 20px;
}

.lightbox-thumb {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
    flex-shrink: 0;
    position: relative;
}

    .lightbox-thumb:hover {
        opacity: 0.8;
    }

    .lightbox-thumb.active {
        opacity: 1;
        border-color: var(--accent-color);
        box-shadow: 0 0 15px rgba(0, 180, 255, 0.5);
    }

    .lightbox-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lightbox-thumb .thumb-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .lightbox-thumb .thumb-play i {
            font-size: 0.5rem;
            color: var(--primary-color);
            margin-left: 2px;
        }

/* Swipe indicator for touch devices */
.swipe-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: none;
    align-items: center;
    gap: 10px;
}

    .swipe-indicator i {
        font-size: 1.2rem;
        animation: swipeHint 1.5s ease-in-out infinite;
    }

@keyframes swipeHint {
    0%, 100% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Lightbox Responsive */
@media (max-width: 992px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-caption h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        top: auto;
        bottom: 100px;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-counter {
        top: 20px;
        left: 20px;
        transform: none;
    }

    .lightbox-content {
        max-width: 95vw;
    }

    .lightbox-media-wrapper {
        max-height: 60vh;
    }

    .lightbox-media {
        max-height: 60vh;
    }

        .lightbox-media.video-frame {
            width: 95vw;
            height: 53.4vw;
        }

    .lightbox-caption {
        margin-top: 15px;
        padding: 0 15px;
    }

        .lightbox-caption h4 {
            font-size: 1.1rem;
        }

        .lightbox-caption p {
            font-size: 0.9rem;
        }

    .lightbox-thumbnails {
        bottom: 15px;
        max-width: 90vw;
    }

    .lightbox-thumb {
        width: 55px;
        height: 40px;
    }

    .swipe-indicator {
        display: flex;
    }
}

@media (max-width: 480px) {
    .lightbox-thumb {
        width: 45px;
        height: 32px;
    }
}
