/* =============================================
   ADZ PREMIUM ADVERTISEMENT DETAILS - MODERN DESIGN
   Version: 2.0
   ============================================= */

:root {
    /* Primary Colors */
    --primary-jobz: #b343f5;
    --primary-jobz-dark: #5d00f5;
    --primary-light: #ffffff;
    --primary-gradient: linear-gradient(135deg, #777777 0%, #aeaeae 100%);

    /* Neutral Colors */
    --dark: #1e293b;
    --dark-gray: #334155;
    --medium-gray: #64748b;
    --light-gray: #f1f5f9;
    --border: #e2e8f0;
    --white: #ffffff;

    /* Accent Colors */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #4f4f4f;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 6px;
    --radius-lg: 12px;
    --radius-xl: 24px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* =============================================
   GLOBAL RESET & BASE STYLES
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: #f8fafc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   HERO BREADCRUMB SECTION
   ============================================= */

.container-adz{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 20px;
    overflow-x: hidden;
}

.hero-breadcrumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0 30px;
    margin-top: 80px;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-modern li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-modern li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-modern li a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.breadcrumb-modern li a:hover {
    color: #ffffff;
}

.breadcrumb-modern li.active {
    color: #ffffff;
    font-weight: 600;
}

/* =============================================
   MAIN AD DETAILS SECTION
   ============================================= */

.ad-details-section {
    padding: 40px 0 80px;
}

/* =============================================
   AD HEADER CARD
   ============================================= */

.ad-header-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.title-section {
    flex: 1;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ad-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
}

.views-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #c7ffec;
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--medium-gray);
    font-weight: 600;
    white-space: nowrap;
}

.views-badge i {
    color: #07b57a;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 14px;
    font-weight: 500;
}

.meta-item i {
    color: var(--primary-jobz);
    font-size: 16px;
}

.meta-item.status {
    color: var(--success);
}

.meta-item.status i {
    color: var(--success);
}

/* =============================================
   GALLERY CARD
   ============================================= */

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.main-image-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.image-wrapper {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.zoom-btn {
    background: var(--white);
    color: var(--primary-jobz);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.zoom-btn:hover {
    transform: scale(1.1);
    background: var(--primary-jobz);
    color: var(--white);
}

.thumbnail-gallery {
    margin-top: 20px;
    overflow: hidden;
}

.thumbnail-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-jobz) var(--light-gray);
}

.thumbnail-scroll::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-jobz);
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-fast);
}

.thumbnail-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--primary-jobz);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   DETAILS CARD
   ============================================= */

.details-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.price-section {
    align-items: center;
    padding: 24px 0px;
    margin-bottom: 2px;
}

.price-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-amount {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-jobz);
    line-height: 1;
    margin-bottom: 20px;
}

.negotiable-badge {
    background: var(--success);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-jobz);
}

/* =============================================
   JOB DETAILS GRID - MODERN DESIGN
   ============================================= */

.job-details-grid {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.details-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--primary-light);
    border-radius: var(--radius);
    transition: var(--transition-fast);
    box-shadow: var(--shadow);
}

.detail-item:hover {
    background: rgba(179, 67, 245, 0.08);
    transform: translateY(-2px);
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: var(--white);
}

.detail-icon.job-type {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.detail-icon.experience {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.detail-icon.work-mode {
    background: linear-gradient(135deg, #10b981, #047857);
}

.detail-icon.education {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--medium-gray);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
}

/* =============================================
   SECTION DIVIDER
   ============================================= */

.section-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

/* =============================================
   JOB SECTION - RESPONSIBILITIES, SKILLS, BENEFITS
   ============================================= */

.job-section {
    margin-bottom: 32px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section .card-title-modern {
    margin-bottom: 20px;
}

/* Responsibilities List */
.responsibilities-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-left: 4px solid var(--primary-jobz);
    border-radius: var(--radius);
    transition: var(--transition-fast);
    box-shadow: var(--shadow);
}

.responsibility-item:hover {
    background: linear-gradient(135deg, rgba(179, 67, 245, 0.12), rgba(93, 0, 245, 0.08));
    transform: translateX(4px);
}

.item-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-jobz);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.item-content p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Skills Container */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.skill-badge:hover {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-color: var(--primary-jobz);
    transform: translateY(-2px);
}

.skill-badge::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition-fast);
    box-shadow: var(--shadow);
}

.benefit-item:hover {
    border-color: var(--primary-jobz);
    box-shadow: 0 4px 12px rgba(179, 67, 245, 0.15);
    transform: translateY(-3px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
}

.benefit-icon.salary {
    background: linear-gradient(135deg, #10b981, #047857);
}

.benefit-icon.insurance {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.benefit-icon.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.benefit-icon.work-life {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.benefit-desc {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
}

/* =============================================
   RESPONSIVE DESIGN - JOB DETAILS
   ============================================= */

@media (max-width: 768px) {
    .details-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .detail-item {
        padding: 12px;
        gap: 12px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 13px;
    }

    .responsibility-item {
        padding: 12px;
        gap: 12px;
    }

    .item-number {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .item-content p {
        font-size: 13px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-item {
        padding: 12px;
        gap: 10px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 425px) {
    .details-grid-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-item {
        padding: 10px;
        gap: 10px;
    }

    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .detail-label {
        font-size: 10px;
    }

    .detail-value {
        font-size: 12px;
    }

    .section-divider {
        margin: 24px 0;
    }

    .responsibility-item {
        padding: 10px;
        gap: 10px;
    }

    .item-number {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .item-content p {
        font-size: 12px;
    }

    .skills-container {
        gap: 8px;
    }

    .skill-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-item {
        padding: 10px;
        gap: 8px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .benefit-title {
        font-size: 13px;
    }

    .benefit-desc {
        font-size: 11px;
    }
}

/* =============================================
   VARIATIONS SECTION
   ============================================= */

.variations-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.variations-grid {
    display: grid;
    gap: 20px;
}

.variation-group {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-jobz);
}

.variation-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.variation-label i {
    color: var(--primary-jobz);
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-badge {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border);
    transition: var(--transition-fast);
}

.option-badge:hover {
    border-color: var(--primary-jobz);
    color: var(--primary-jobz);
}

/* =============================================
   DESCRIPTION SECTION
   ============================================= */

.description-section {
    margin-bottom: 0;
}

.description-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.description-content p {
    margin-bottom: 16px;
}

.description-content ul,
.description-content ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

/* =============================================
   REVIEWS CARD
   ============================================= */

.reviews-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.add-review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

/* =============================================
   SIDEBAR STICKY
   ============================================= */

.sidebar-sticky {
    position: sticky;
}

/* =============================================
   ACTION BUTTONS CARD
   ============================================= */

.action-buttons-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.btn-primary-action {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.4);
    margin-bottom: 12px;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

.secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    padding: 10px;
}

.price-section{
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.btn-secondary-action {
    background: var(--light-gray);
    color: var(--dark);
    box-shadow: 0 4px 14px 0 rgba(122, 122, 122, 0.4);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.btn-secondary-action:hover {
    background: var(--white);
    border-color: var(--primary-jobz);
    color: var(--primary-jobz);
}

.btn-secondary-action i {
    font-size: 16px;
}

/* =============================================
   SHARE DROPDOWN - PREMIUM DESIGN
   ============================================= */

.share-dropdown {
    position: relative;
    flex: 1;
}

.share-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(10px);
}

.share-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    z-index: -1;
}

.share-dropdown.active .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.share-option {
    display: block;
    position: relative;
    overflow: hidden;
}

.share-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.share-option:hover::before {
    left: 100%;
}

.share-option a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.share-option:last-child a {
    border-bottom: none;
}

.share-option a:hover {
    padding-left: 1.75rem;
    background: linear-gradient(to right, rgba(102, 126, 234, 0.08), transparent);
}

.share-option i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

/* WhatsApp Styling */
.share-option.whatsapp a {
    color: #25d366;
}

.share-option.whatsapp i {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.share-option.whatsapp:hover a {
    background: linear-gradient(to right, rgba(37, 211, 102, 0.12), transparent);
    color: #25d366;
}

.share-option.whatsapp:hover i {
    background: #25d366;
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Facebook Styling */
.share-option.facebook a {
    color: #1877f2;
}

.share-option.facebook i {
    background: rgba(24, 119, 242, 0.15);
    color: #1877f2;
}

.share-option.facebook:hover a {
    background: linear-gradient(to right, rgba(24, 119, 242, 0.12), transparent);
    color: #1877f2;
}

.share-option.facebook:hover i {
    background: #1877f2;
    color: var(--white);
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* Email Styling */
.share-option.email a {
    color: #667eea;
}

.share-option.email i {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

.share-option.email:hover a {
    background: linear-gradient(to right, rgba(102, 126, 234, 0.12), transparent);
    color: #667eea;
}

.share-option.email:hover i {
    background: #667eea;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Copy Link Styling */
.share-option.copy-link a {
    color: #764ba2;
}

.share-option.copy-link i {
    background: rgba(118, 75, 162, 0.15);
    color: #764ba2;
}

.share-option.copy-link:hover a {
    background: linear-gradient(to right, rgba(118, 75, 162, 0.12), transparent);
    color: #764ba2;
}

.share-option.copy-link:hover i {
    background: #764ba2;
    color: var(--white);
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3);
}
/* Twitter Styling */
.share-option.twitter a {
    color: #1DA1F2;
}

.share-option.twitter i {
    background: rgba(29, 161, 242, 0.15);
    color: #1DA1F2;
}

.share-option.twitter:hover a {
    background: linear-gradient(to right, rgba(29, 161, 242, 0.12), transparent);
    color: #1DA1F2;
}

.share-option.twitter:hover i {
    background: #1DA1F2;
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

/* LinkedIn Styling */
.share-option.linkedin a {
    color: #0077B5;
}

.share-option.linkedin i {
    background: rgba(0, 119, 181, 0.15);
    color: #0077B5;
}

.share-option.linkedin:hover a {
    background: linear-gradient(to right, rgba(0, 119, 181, 0.12), transparent);
    color: #0077B5;
}

.share-option.linkedin:hover i {
    background: #0077B5;
    color: var(--white);
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

/* Success/Error states for copy button */
.share-option.copy-link a {
    transition: color 0.3s ease;
}

/* =============================================
   CONTACT CARD
   ============================================= */

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.card-title-modern {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.card-title-modern i {
    color: var(--primary-jobz);
    font-size: 20px;
}

.seller-profile {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.seller-avatar {
    position: relative;
    flex-shrink: 0;
}

.seller-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--success);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid var(--white);
}

.seller-info {
    flex: 1;
}

.seller-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.seller-name a {
    color: var(--dark);
    transition: var(--transition-fast);
}

.seller-name a:hover {
    color: var(--primary-jobz);
}

.seller-type {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: 500;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #ffffff;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    cursor: pointer;
    box-shadow: var(--shadow);
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(179, 67, 245, 0.12), rgba(93, 0, 245, 0.08));
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: #ebfff8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--medium-gray);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

/* =============================================
   MAP CARD
   ============================================= */

.map-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.location-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
}

/* =============================================
   SAFETY TIPS CARD
   ============================================= */

.safety-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--primary-jobz);
    font-weight: 500;
}

.safety-list i {
    color: var(--success);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* =============================================
   SIMILAR ADS SECTION
   ============================================= */

.similar-ads-section {
    padding: 40px 0 50px;
    background: var(--white);
    margin: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-title-main {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.section-title-main i {
    color: var(--primary-jobz);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-jobz);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-fast);
}

.view-all-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.similar-ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-link {
    display: block;
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-modern:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(207, 207, 207, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border: 2px solid var(--white);
    border-radius: 50px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-jobz);
    margin-bottom: 10px;
}

.product-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--medium-gray);
    font-size: 13px;
    font-weight: 500;
}

.product-location i {
    color: var(--primary-jobz);
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */

.newsletter-section {
    padding: 0 0 80px;
    background: #f8fafc;
}

.newsletter-container {
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: var(--shadow-xl);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.newsletter-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.form-group-inline {
    display: flex;
    gap: 12px;
}

.form-control-modern {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
}

.form-control-modern::placeholder {
    color: var(--medium-gray);
}

.btn-subscribe {
    padding: 16px 32px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .views-badge{
        padding: 4px 10px;
        font-size: 10px;
    }
    .btn-secondary-action{
        padding: 5px 10px;
    }
    .meta-item{
        font-size: 11px;
    }
    .meta-item i {
        font-size: 12px;
    }
    .safety-card,
    .gallery-card,
    .contact-card,
    .details-card,
    .price-section{
        padding: 20px;
    }

    .ad-title {
        font-size: 28px;
    }
    .ad-details-section{
        padding: 10px 0 20px;
    }
    .ad-header-card{
        padding: 10px;
    }
    .price-amount{
        font-size: 24px;
        margin-bottom: 2px;
    }

    .similar-ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-breadcrumb {
        padding: 30px 0 20px;
        margin-top: 70px;
    }

    .sidebar-sticky {
        position: static;
        margin-top: 30px;
    }

    .ad-header-card,
    .gallery-card,
    .details-card {
        padding: 24px;
    }

    .image-wrapper {
        min-height: 350px;
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .category-badge{
        font-size: 8px;
        padding: 3px 5px;
    }
    .ad-header-card, .gallery-card, .details-card {
        padding: 10px;
    }
    .ad-title {
        font-size: 24px;
        text-align: left;
    }

    .header-top {
        flex-direction: row;
        margin-bottom: 2px;
    }

    .views-badge {
        align-self: flex-start;
        padding: 2px 5px;
        font-size: 9px;
    }

    .meta-info {
        padding-top: 10px;
        flex-direction: row;
        gap: 30px;
    }
    .meta-item{
        font-size: 10px;
    }
    .meta-item i{
        font-size: 8px;
    }
    .btn-secondary-action i {
        font-size: 13px;
    }
    .btn-secondary-action {
        padding: 4px 8px;
        font-size: 11px;
    }

    .price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 2px;
    }

    .price-amount {
        font-size: 20px;
    }
    .description-section{
        padding: 10px 2px;
    }
    .description-content{
        font-size: 12px;
    }
    .ad-details-section{
        padding: 5px 0px;
    }
    .safety-card{
        margin-bottom: 20px;
    }
    .safety-list li{
        font-size: 11px;
    }
    .safety-list i{
        font-size: 12px;
    }
    .secondary-actions{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    .card-title-modern{
        font-size: 12px;
    }
    .card-title-modern i{
        font-size: 13px;
    }

    .negotiable-badge {
        margin-left: 0;
    }

    .image-wrapper {
        min-height: 300px;
    }

    .main-image {
        max-height: 400px;
    }

    .thumbnail-item {
        width: 80px;
        height: 80px;
    }

    .seller-profile {
        flex-direction: column;
        text-align: center;
    }

    .similar-ads-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .section-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .form-group-inline {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    .ad-details-section {
        padding: 30px 0 10px;
    }
    .view-all-link{
        font-size: 11px;
    }
    .view-all-link:hover{
        color: #404040;
    }
    .ad-header-card,
    .gallery-card,
    .details-card,
    .contact-card,
    .map-card,
    .safety-card {
        padding: 20px;
        border-radius: var(--radius);
        margin-bottom: 16px;
    }

    .ad-title {
        font-size: 20px;
    }

    .category-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .views-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .image-wrapper {
        min-height: 250px;
    }

    .main-image {
        max-height: 350px;
    }

    .thumbnail-item {
        width: 70px;
        height: 70px;
    }
    .price-section {
        padding: 20px;
    }

    .price-amount {
        font-size: 24px;
    }
    .secondary-actions{
        gap: 5px;
    }


    .section-title {
        font-size: 18px;
    }

    .card-title-modern {
        font-size: 16px;
    }

    .action-buttons-card {
        padding: 16px;
    }

    .btn-primary-action {
        padding: 14px 20px;
        font-size: 14px;
    }

    .btn-secondary-action {
        padding: 5px 6px;
        font-size: 10px;
    }

    .seller-avatar img {
        width: 60px;
        height: 60px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .location-map {
        height: 250px;
    }

    .section-title-main {
        font-size: 22px;
    }

    .similar-ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 14px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }

    .newsletter-container {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .newsletter-text h3 {
        font-size: 22px;
    }

    .newsletter-text p {
        font-size: 14px;
    }

    .form-control-modern {
        padding: 14px 16px;
        font-size: 14px;
    }

    .btn-subscribe {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Share Dropdown Mobile */
    .share-menu {
        min-width: 220px;
        right: -10px;
    }

    .share-option a {
        padding: 0.9rem 1.1rem;
        font-size: 13px;
        gap: 0.85rem;
    }

    .share-option a:hover {
        padding-left: 1.6rem;
    }

    .share-option i {
        width: 22px;
        height: 22px;
        font-size: 15px;
    }
}

@media (max-width: 425px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ad-header-card,
    .gallery-card,
    .details-card {
        padding: 16px;
    }

    .ad-title {
        font-size: 18px;
    }

    .image-wrapper {
        min-height: 220px;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .price-amount {
        font-size: 22px;
    }

    .variation-group {
        padding: 16px;
    }

    .similar-ads-grid {
        grid-template-columns: 1fr;
    }

    /* Share Dropdown Small Mobile */
    .share-menu {
        min-width: 200px;
        right: -15px;
    }

    .share-option a {
        padding: 0.85rem 1rem;
        font-size: 12px;
        gap: 0.75rem;
    }

    .share-option a:hover {
        padding-left: 1.5rem;
    }

    .share-option i {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    .share-option span {
        display: inline;
    }

    .product-image {
        height: 200px;
    }
}
@media (max-width: 320px) {
    .btn-secondary-action{
        padding: 2px 3px;
        font-size: 8px;
    }
    .btn-secondary-action i{
        font-size: 9px;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ad-header-card,
.gallery-card,
.details-card,
.reviews-card,
.add-review-card {
    animation: fadeIn 0.6s ease-out;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }


