/* ========================================
   TELL PROJECTS - BLOG POST STYLESHEET
   WordPress-Style Centralized CSS Template
   All blog posts automatically inherit this styling
   ======================================== */

/* ===== BLOG HERO SECTION ===== */
.blog-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 20px 100px;
    background: var(--bg-dark);
}

.blog-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 1;
}

.blog-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.45) 0%, rgba(13, 31, 61, 0.4) 100%);
    z-index: 2;
}

.blog-hero .container {
    position: relative;
    z-index: 3;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--gold-primary);
}

/* ===== BLOG TITLE & META ===== */
.blog-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.blog-meta-item i {
    color: var(--gold-primary);
}

/* ===== BLOG CONTENT SECTION ===== */
.blog-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.blog-content article {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(209, 160, 4, 0.1);
}

.blog-content h2 {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
}

.blog-content h3 {
    font-family: var(--font-secondary);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--gold-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-content li strong {
    color: var(--gold-primary);
}

.blog-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.blog-content th,
.blog-content td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(209, 160, 4, 0.1);
}

.blog-content th {
    background: var(--gold-primary);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content td {
    color: var(--text-secondary);
}

/* ===== BLOG CTA SECTION ===== */
.blog-cta {
    background: linear-gradient(135deg, var(--gold-primary), #c4940a);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    box-shadow: var(--shadow-gold);
}

.blog-cta h3 {
    color: var(--bg-dark);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.blog-cta p {
    color: var(--bg-dark);
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta .btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-cta .btn-primary {
    background: var(--bg-dark);
    color: #fff;
}

.blog-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.5);
}

.blog-cta .btn-secondary {
    background: #fff;
    color: var(--bg-dark);
}

.blog-cta .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===== FAQ SECTION ===== */
.blog-faq {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border-left: 5px solid var(--gold-primary);
}

.blog-faq h2 {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
}

.blog-faq h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.blog-faq p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== TRUST BADGES ===== */
.blog-trust-badges {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.trust-badge {
    text-align: center;
    padding: 20px;
}

.trust-badge i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.trust-badge h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trust-badge p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== STAR RATING ===== */
.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin: 20px 0;
}

.star-rating .rating-text {
    margin-left: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== AUTHOR BIO ===== */
.author-bio {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border-left: 5px solid var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 30px;
}

.author-bio img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
}

.author-bio-content h3 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.author-bio-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== BLOG FOOTER ===== */
.blog-footer {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 2px solid var(--gold-primary);
}

.blog-footer .container {
    max-width: 900px;
}

.blog-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.blog-footer h4 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.blog-footer p,
.blog-footer a {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.blog-footer a:hover {
    color: var(--gold-light);
}

.blog-footer .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-footer .footer-contact-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* ===== REVIEWS WIDGET ===== */
.reviews-widget {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(209, 160, 4, 0.1);
}

.reviews-widget h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.reviews-widget .star-rating {
    margin-bottom: 10px;
}

.reviews-widget p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== MAP SECTION ===== */
.blog-map-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.blog-map-section h3 {
    color: var(--gold-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-secondary);
}

.blog-map-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-map-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(209, 160, 4, 0.2);
    border: 2px solid var(--gold-primary);
}

.blog-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-map-info-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid rgba(209, 160, 4, 0.1);
}

.blog-map-info-item i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.blog-map-info-item h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-map-info-item p,
.blog-map-info-item a {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.blog-map-info-item a {
    transition: color var(--transition-fast);
}

.blog-map-info-item a:hover {
    color: var(--gold-light);
}

/* ===== BEFORE/AFTER GALLERY ===== */
.blog-before-after {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.blog-before-after h3 {
    color: var(--gold-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-secondary);
}

.blog-before-after > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.before-after-item {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(209, 160, 4, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.before-after-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(209, 160, 4, 0.3);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.before-after-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-primary);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.before-after-content {
    padding: 20px;
}

.before-after-content h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.before-after-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== PRICING TABLE ===== */
.blog-pricing-table {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.blog-pricing-table h3 {
    color: var(--gold-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-secondary);
}

.blog-pricing-table > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-tier {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(209, 160, 4, 0.1);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.pricing-tier:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.pricing-tier.featured {
    border: 2px solid var(--gold-primary);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    position: relative;
}

.pricing-tier.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: var(--bg-dark);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-tier-name {
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-tier-price {
    color: var(--text-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.pricing-tier-period {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 25px;
}

.pricing-tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-tier-features li {
    color: var(--text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-tier-features li:last-child {
    border-bottom: none;
}

.pricing-tier-features li i {
    color: var(--gold-primary);
    margin-right: 10px;
}

.pricing-tier .btn {
    width: 100%;
    justify-content: center;
}

/* ===== TESTIMONIAL BLOCK ===== */
.blog-testimonial {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
    position: relative;
}

.blog-testimonial::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 3rem;
    color: rgba(209, 160, 4, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
}

.testimonial-author-info h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.testimonial-rating i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

/* ===== VIDEO EMBED ===== */
.blog-video {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.blog-video h3 {
    color: var(--gold-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-secondary);
}

.blog-video > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(209, 160, 4, 0.2);
    border: 2px solid var(--gold-primary);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== PROJECT TIMELINE ===== */
.blog-timeline {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.blog-timeline h3 {
    color: var(--gold-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-secondary);
}

.blog-timeline > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.timeline-items {
    position: relative;
    padding-left: 40px;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-primary);
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 3px var(--gold-primary);
}

.timeline-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.timeline-item-number {
    background: var(--gold-primary);
    color: var(--bg-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-item-title {
    color: var(--gold-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.timeline-item-duration {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-style: italic;
}

.timeline-item-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .blog-hero {
        padding: 120px 15px 80px;
        min-height: 400px;
    }

    .blog-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .blog-content article {
        padding: 40px 30px;
    }

    .blog-cta {
        padding: 40px 30px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .blog-map-section {
        padding: 40px 30px;
    }

    .blog-map-container {
        height: 350px;
    }
}

/* Mobile (< 768px) */
@media screen and (max-width: 767px) {
    .blog-hero {
        padding: 100px 10px 60px;
        min-height: 350px;
    }

    .blog-title {
        font-size: 1.8rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-content {
        margin: 40px auto;
    }

    .blog-content article {
        padding: 30px 20px;
    }

    .blog-content h2 {
        font-size: 1.6rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .blog-content p,
    .blog-content li {
        font-size: 1rem;
    }

    .blog-cta {
        padding: 30px 20px;
    }

    .blog-cta h3 {
        font-size: 1.6rem;
    }

    .blog-cta .cta-buttons {
        flex-direction: column;
    }

    .blog-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .blog-faq,
    .blog-trust-badges,
    .reviews-widget {
        padding: 30px 20px;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
    }

    .blog-map-section {
        padding: 30px 20px;
    }

    .blog-map-container {
        height: 300px;
    }

    .blog-map-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-before-after,
    .blog-pricing-table,
    .blog-testimonial,
    .blog-video,
    .blog-timeline {
        padding: 30px 20px;
    }

    .before-after-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-items {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 25px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-bio {
        padding: 30px 20px;
    }

    .author-bio img {
        width: 100px;
        height: 100px;
    }

    .blog-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .blog-cta,
    .blog-footer,
    .reviews-widget {
        display: none !important;
    }

    .blog-hero {
        min-height: auto;
        padding: 40px 20px;
    }

    .blog-content article {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===== ADVANCED CONTRACTOR CTA (B2B) ===== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(209, 160, 4, 0.3); }
    50% { box-shadow: 0 0 40px rgba(209, 160, 4, 0.6), 0 0 60px rgba(209, 160, 4, 0.4); }
}

/* ========================================
   ENHANCED CONTRACTOR CTA - STUNNING REDESIGN
   Much more beautiful and eye-catching!
   ======================================== */

/* Main Container - Dramatic gradient background with glow */
.contractor-cta-advanced {
    position: relative;
    margin: 60px 0;
    padding: 60px 40px;
    background:
        radial-gradient(circle at 20% 50%, rgba(209, 160, 4, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 196, 48, 0.15) 0%, transparent 50%),
        linear-gradient(135deg,
            #0a1628 0%,
            #1a2f4f 25%,
            #0d1f3d 50%,
            #1a2f4f 75%,
            #0a1628 100%);
    background-size: 100%, 100%, 400% 400%;
    animation: gradientShift 12s ease infinite;
    border-radius: 40px;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 150px rgba(209, 160, 4, 0.2) inset,
        0 0 80px rgba(209, 160, 4, 0.3);
    overflow: visible;
}

/* Animated gradient border effect */
.contractor-cta-advanced::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg,
        var(--gold-primary),
        #f4c430,
        #fff,
        var(--gold-primary),
        #f4c430);
    background-size: 400% 400%;
    border-radius: 40px;
    z-index: -1;
    animation: borderGlow 8s linear infinite;
}

/* Spotlight effect */
.contractor-cta-advanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%);
    animation: none; /* DISABLED: spotlight was causing spinning overlay effect */
    pointer-events: none;
    z-index: 1;
}

/* Top badge - Elegant with pulse effect */
.contractor-cta-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg,
        var(--gold-primary) 0%,
        #f4c430 50%,
        #fff 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite, pulseGlow 2s ease-in-out infinite;
    color: #0a1628;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow:
        0 8px 30px rgba(209, 160, 4, 0.8),
        0 0 60px rgba(244, 196, 48, 0.6),
        0 0 100px rgba(255, 255, 255, 0.3) inset;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.contractor-cta-badge i {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

/* Content wrapper */
.contractor-cta-content {
    position: relative;
    z-index: 2;
}

/* Header - Elegant and refined */
.contractor-cta-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.contractor-cta-header h2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Main title - Elegant with refined styling */
.gradient-text {
    background: linear-gradient(135deg,
        #fff 0%,
        var(--gold-primary) 20%,
        #f4c430 40%,
        #fff 60%,
        var(--gold-primary) 80%,
        #fff 100%);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGlow 6s ease infinite;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-primary);
    text-shadow:
        0 0 40px rgba(209, 160, 4, 0.8),
        0 0 80px rgba(244, 196, 48, 0.5);
    letter-spacing: -1px;
    position: relative;
}

/* Glow effect behind title */
.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-clip: text;
    -webkit-background-clip: text;
    filter: blur(20px);
    opacity: 0.7;
    z-index: -1;
}

/* Subheading - Refined and elegant */
.subheading {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font-secondary);
    text-shadow: 0 2px 20px rgba(209, 160, 4, 0.5);
    letter-spacing: 0.5px;
}

.header-description {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 30px auto 0;
}

/* Benefit cards - Glass morphism with glow */
.contractor-cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.benefit-card {
    background: rgba(15, 35, 64, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 25px;
    border: 2px solid rgba(209, 160, 4, 0.3);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Card shine effect */
.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

/* Card glow border on hover */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg,
        var(--gold-primary),
        #f4c430,
        var(--gold-primary));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow:
        0 25px 50px rgba(209, 160, 4, 0.4),
        0 0 60px rgba(244, 196, 48, 0.3),
        0 0 100px rgba(209, 160, 4, 0.2) inset;
    background: rgba(15, 35, 64, 0.95);
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Icon - Larger with dramatic glow */
.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-primary), #f4c430, #fff);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0a1628;
    box-shadow:
        0 15px 40px rgba(209, 160, 4, 0.5),
        0 0 80px rgba(244, 196, 48, 0.4),
        0 0 100px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.5s;
    position: relative;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), #f4c430);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow:
        0 20px 50px rgba(209, 160, 4, 0.7),
        0 0 100px rgba(244, 196, 48, 0.6);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 0.8;
}

.benefit-card h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(209, 160, 4, 0.5);
}

.benefit-card p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Stats - Elegant with glowing numbers */
.contractor-cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    padding: 35px 30px;
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(209, 160, 4, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(209, 160, 4, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.contractor-cta-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-primary),
        transparent);
    animation: scanline 3s linear infinite;
}

.stat-item {
    text-align: center;
    padding: 25px;
    position: relative;
    transition: all 0.4s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(209, 160, 4, 0.5),
        transparent);
}

/* Stat numbers - Refined with glow */
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg,
        var(--gold-primary),
        #f4c430,
        #fff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
    margin-bottom: 15px;
    text-shadow:
        0 0 40px rgba(209, 160, 4, 0.8),
        0 0 80px rgba(244, 196, 48, 0.5);
    animation: numberGlow 3s ease-in-out infinite;
    position: relative;
}

.stat-label {
    color: #d0d0d0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Action buttons - HUGE and impossible to miss */
.contractor-cta-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-contractor-primary,
.btn-contractor-secondary,
.btn-contractor-linkedin {
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Primary button - Gold gradient with shine */
.btn-contractor-primary {
    background: linear-gradient(135deg,
        var(--gold-primary) 0%,
        #f4c430 50%,
        var(--gold-primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: #0a1628;
    box-shadow:
        0 15px 40px rgba(209, 160, 4, 0.5),
        0 0 80px rgba(244, 196, 48, 0.4),
        0 5px 20px rgba(255, 255, 255, 0.3) inset;
}

.btn-contractor-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent);
    animation: shine 2.5s infinite;
}

.btn-contractor-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(209, 160, 4, 0.7),
        0 0 120px rgba(244, 196, 48, 0.6),
        0 5px 30px rgba(255, 255, 255, 0.5) inset;
    border-color: #fff;
}

/* Secondary button - Outlined with fill on hover */
.btn-contractor-secondary {
    background: rgba(15, 35, 64, 0.8);
    backdrop-filter: blur(10px);
    color: var(--gold-primary);
    border: 3px solid var(--gold-primary);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(209, 160, 4, 0.2) inset;
}

.btn-contractor-secondary:hover {
    background: linear-gradient(135deg,
        var(--gold-primary),
        #f4c430);
    color: #0a1628;
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(209, 160, 4, 0.6),
        0 0 80px rgba(244, 196, 48, 0.4);
    border-color: #fff;
}

/* LinkedIn button - Blue with glow */
.btn-contractor-linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
    border-color: #0077b5;
    box-shadow:
        0 10px 30px rgba(0, 119, 181, 0.4),
        0 0 40px rgba(0, 160, 220, 0.2) inset;
}

.btn-contractor-linkedin:hover {
    background: linear-gradient(135deg, #005885, #0077b5);
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 25px 60px rgba(0, 119, 181, 0.6),
        0 0 80px rgba(0, 160, 220, 0.4);
    border-color: #00a0dc;
}

/* Requirements - Glass morphism with checkmarks */
.contractor-cta-requirements {
    background: rgba(15, 35, 64, 0.6);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 25px;
    border: 2px solid rgba(209, 160, 4, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(209, 160, 4, 0.1) inset;
}

.contractor-cta-requirements h3 {
    color: var(--gold-primary);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 800;
    text-shadow: 0 2px 30px rgba(209, 160, 4, 0.6);
    letter-spacing: 1px;
}

.contractor-cta-requirements ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.contractor-cta-requirements li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(209, 160, 4, 0.2);
    transition: all 0.4s;
    font-size: 1.05rem;
    color: #e0e0e0;
}

.contractor-cta-requirements li:hover {
    background: rgba(209, 160, 4, 0.15);
    transform: translateX(15px);
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px rgba(209, 160, 4, 0.3);
}

.contractor-cta-requirements li i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(209, 160, 4, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(209, 160, 4, 0.4);
}

/* Floating decoration icons - Larger and more visible */
.contractor-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(209, 160, 4, 0.25);
    font-size: 4rem;
    animation: none; /* DISABLED: floatAnimation was causing zoom effect */
    filter: drop-shadow(0 0 20px rgba(209, 160, 4, 0.5));
}

.floating-icon.icon-1 {
    top: 8%;
    left: 3%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 12%;
    right: 5%;
    animation-delay: 2s;
}

.floating-icon.icon-3 {
    bottom: 12%;
    left: 5%;
    animation-delay: 4s;
}

.floating-icon.icon-4 {
    bottom: 8%;
    right: 3%;
    animation-delay: 6s;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 30px rgba(209, 160, 4, 0.8));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 50px rgba(244, 196, 48, 1));
    }
}

@keyframes numberGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(209, 160, 4, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(244, 196, 48, 0.8));
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 8px 30px rgba(209, 160, 4, 0.8),
            0 0 60px rgba(244, 196, 48, 0.6);
    }
    50% {
        box-shadow:
            0 12px 40px rgba(209, 160, 4, 1),
            0 0 100px rgba(244, 196, 48, 0.8);
    }
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spotlight {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-30%, -30%) rotate(180deg); }
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.4;
    }
}

/* ========================================
   RESPONSIVE - Mobile optimization
   ======================================== */

@media (max-width: 768px) {
    .contractor-cta-advanced {
        padding: 70px 30px;
        margin: 80px 0;
        border-radius: 30px;
    }

    .contractor-cta-badge {
        font-size: 0.95rem;
        padding: 12px 35px;
    }

    .gradient-text {
        font-size: 3rem;
    }

    .subheading {
        font-size: 1.4rem;
    }

    .header-description {
        font-size: 1.05rem;
    }

    .contractor-cta-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-icon {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
    }

    .contractor-cta-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 25px;
        gap: 30px;
    }

    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(3)::after {
        display: none;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .contractor-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .btn-contractor-primary,
    .btn-contractor-secondary,
    .btn-contractor-linkedin {
        width: 100%;
        justify-content: center;
        padding: 20px 40px;
        font-size: 1.15rem;
    }

    .contractor-cta-requirements {
        padding: 40px 25px;
    }

    .contractor-cta-requirements h3 {
        font-size: 1.8rem;
    }

    .contractor-cta-requirements ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .floating-icon {
        font-size: 2.5rem;
        opacity: 0.4;
    }
}

/* ========================================
   SHORTCODE #11: 6-Image Gallery
   ======================================== */

.blog-image-gallery-6 {
    margin: 60px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a2f4f 100%);
    border-radius: 20px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.blog-image-gallery-6 .gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.blog-image-gallery-6 .gallery-title i {
    margin-right: 15px;
    color: var(--gold-primary);
}

.blog-image-gallery-6 .gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.gallery-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item-6 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--bg-secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-6:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(209, 160, 4, 0.3),
                0 0 0 2px var(--gold-primary);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.gallery-item-6 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-6:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.8) 50%,
        transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-6:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.gallery-caption p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
}

.gallery-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.gallery-location i {
    font-size: 0.85rem;
}

.blog-image-gallery-6 .gallery-cta {
    text-align: center;
    padding: 30px;
    background: rgba(209, 160, 4, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(209, 160, 4, 0.3);
}

.blog-image-gallery-6 .gallery-cta p {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-image-gallery-6 .gallery-cta .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.blog-image-gallery-6 .gallery-cta .btn i {
    margin-right: 10px;
}

.blog-image-gallery-6 .gallery-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(209, 160, 4, 0.4);
}

/* Tablet (2 columns) */
@media (max-width: 1023px) {
    .blog-image-gallery-6 {
        padding: 40px 30px;
    }

    .gallery-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-image-gallery-6 .gallery-title {
        font-size: 2.2rem;
    }

    .gallery-caption h3 {
        font-size: 1.2rem;
    }
}

/* Mobile (1 column) */
@media (max-width: 767px) {
    .blog-image-gallery-6 {
        margin: 40px 0;
        padding: 30px 20px;
        border-radius: 15px;
    }

    .blog-image-gallery-6 .gallery-title {
        font-size: 1.8rem;
    }

    .blog-image-gallery-6 .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .gallery-grid-6 {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .gallery-caption h3 {
        font-size: 1.1rem;
    }

    .gallery-caption p {
        font-size: 0.9rem;
    }

    .gallery-location {
        font-size: 0.85rem;
    }

    .blog-image-gallery-6 .gallery-cta {
        padding: 25px 20px;
    }

    .blog-image-gallery-6 .gallery-cta p {
        font-size: 1.1rem;
    }

    .blog-image-gallery-6 .gallery-cta .btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
    }
}
