/*
 * Services CSS - Professional styling with unique classes to avoid conflicts
 * All classes prefixed with 'cosmick-service-' to prevent conflicts
 */

/* ========================================
   Single Service Page Styles
========================================== */

/* Main container */
.cosmick-service-single {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.cosmick-service-hero {
    background: linear-gradient(135deg, #2d1839 0%, #ff675b 100%);
    color: white;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.cosmick-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="serviceDots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23serviceDots)"/></svg>');
    opacity: 0.3;
}

.cosmick-service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cosmick-service-hero-background .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.cosmick-service-hero-background .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 24, 57, 0.8);
    z-index: 2;
    pointer-events: none;
}

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

.cosmick-service-hero-content {
    position: relative;
    z-index: 3;
}

/* Hero meta badges */
.cosmick-service-meta-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cosmick-service-category-badge {
    background: rgba(255, 103, 91, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cosmick-service-featured-badge {
    background: rgba(253, 199, 133, 0.9);
    color: #2d1839;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero title and content */
.cosmick-service-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.cosmick-service-hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 25px;
    opacity: 0.95;
    font-style: italic;
    color: #ecf0f1;
}

.cosmick-service-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
}

.cosmick-service-hero-description p {
    margin: 0;
    color: #ecf0f1;
}

/* Quick info cards */
.cosmick-service-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.cosmick-service-quick-info-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cosmick-service-quick-info-item i {
    font-size: 1.8rem;
    color: #fdc785;
    margin-top: 2px;
    flex-shrink: 0;
}

.cosmick-service-quick-info-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.cosmick-service-quick-info-content span {
    display: block;
    font-size: 1.1rem;
    color: #ecf0f1;
    margin-bottom: 3px;
}

.cosmick-service-quick-info-content small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Hero actions */
.cosmick-service-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cosmick-service-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    cursor: pointer;
}

.cosmick-service-btn-primary {
    background: #ff675b;
    color: white;
    border-color: #ff675b;
}

.cosmick-service-btn-primary:hover {
    background: #f2675d;
    border-color: #f2675d;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 103, 91, 0.3);
}

.cosmick-service-btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.cosmick-service-btn-outline-light:hover {
    background: white;
    color: #2d1839;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Hero visual */
.cosmick-service-hero-visual {
    text-align: center;
}

.cosmick-service-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.cosmick-service-icon-large i {
    font-size: 3rem;
    color: #fdc785;
}

/* ========================================
   Main Content Section
========================================== */

.cosmick-service-content {
    padding: 80px 0;
    background: white;
}

.cosmick-service-content-section {
    background: white;
    margin-bottom: 50px;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.cosmick-service-content-section:last-child {
    margin-bottom: 0;
}

/* Section titles */
.cosmick-service-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d1839;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff675b;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cosmick-service-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #fdc785;
}

.cosmick-service-section-title i {
    color: #ff675b;
    font-size: 2rem;
}

.cosmick-service-section-content {
    color: #2d1839;
    line-height: 1.6;
}

.cosmick-service-section-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cosmick-service-section-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Included Items Section
========================================== */

.cosmick-service-included-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cosmick-service-included-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ff675b;
    transition: all 0.3s ease;
}

.cosmick-service-included-item:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 103, 91, 0.15);
}

.cosmick-service-included-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d1839;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cosmick-service-included-item h4 i {
    color: #ff675b;
    font-size: 1.3rem;
}

.cosmick-service-included-item p {
    color: #7f8c8d;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   Benefits Section
========================================== */

.cosmick-service-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Ensure benefits section is visible and not hidden */
.benefits-section {
    position: relative;
    z-index: 1;
}

.benefits-section * {
    visibility: visible !important;
    opacity: 1 !important;
}

.cosmick-service-benefit-item {
    background: white !important;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    position: relative;
    z-index: 1;
}

.cosmick-service-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff675b;
}

.cosmick-service-benefit-item i {
    font-size: 3rem;
    color: #ff675b;
    margin-bottom: 20px;
    display: block;
}

.cosmick-service-benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d1839 !important;
    margin-bottom: 15px;
}

.cosmick-service-benefit-item p {
    color: #7f8c8d !important;
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Process Section
========================================== */

.cosmick-service-process-steps {
    margin-top: 30px;
}

.cosmick-service-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.cosmick-service-process-step:hover {
    background: #ecf0f1;
    transform: translateX(10px);
}

.cosmick-service-process-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 90px;
    bottom: -20px;
    width: 2px;
    background: #bdc3c7;
    z-index: 1;
}

.cosmick-service-process-step:last-child::before {
    display: none;
}

.cosmick-service-step-number {
    width: 50px;
    height: 50px;
    background: #ff675b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 103, 91, 0.3);
}

.cosmick-service-step-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d1839;
    margin-bottom: 10px;
}

.cosmick-service-step-content p {
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   Sidebar Styles
========================================== */

.cosmick-service-sidebar {
    background: transparent;
    padding: 0;
}

.cosmick-service-sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #ecf0f1;
}

.cosmick-service-sidebar-card:last-child {
    margin-bottom: 0;
}

.cosmick-service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d1839;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

/* Service summary */
.cosmick-service-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ecf0f1;
    gap: 15px;
}

.cosmick-service-summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cosmick-service-summary-item strong {
    color: #2d1839;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 80px;
}

.cosmick-service-summary-value {
    text-align: right;
    flex-grow: 1;
}

.cosmick-service-summary-value span {
    color: #ff675b;
    font-weight: 600;
    display: block;
    font-size: 1.1rem;
}

.cosmick-service-summary-value small {
    color: #7f8c8d;
    font-size: 0.85rem;
    display: block;
    margin-top: 3px;
}

/* Summary actions */
.cosmick-service-summary-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cosmick-service-btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.cosmick-service-btn-outline-primary {
    background: transparent;
    color: #ff675b;
    border-color: #ff675b;
}

.cosmick-service-btn-outline-primary:hover {
    background: #ff675b;
    color: white;
    text-decoration: none;
}

/* Contact card */
.cosmick-service-contact-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cosmick-service-contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cosmick-service-contact-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #2d1839;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cosmick-service-contact-option:hover {
    background: #ff675b;
    color: white;
    text-decoration: none;
    border-color: #ff675b;
    transform: translateY(-2px);
}

.cosmick-service-contact-option i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: #ff675b;
    flex-shrink: 0;
}

.cosmick-service-contact-option:hover i {
    color: white;
}

.cosmick-service-contact-option span {
    font-weight: 600;
}

/* ========================================
   Immediate Answer CTA Styles
========================================== */

.cosmick-service-immediate-cta {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #ff675b 0%, #f2675d 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(255, 103, 91, 0.3);
    max-width: 320px;
    animation: pulse-glow 3s infinite;
    transition: transform 0.3s ease;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 20px 40px rgba(255, 103, 91, 0.3); }
    50% { box-shadow: 0 25px 50px rgba(255, 103, 91, 0.5); }
}

.cosmick-service-immediate-cta h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.cosmick-service-immediate-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

.cosmick-service-immediate-cta .urgent-badge {
    background: #fdc785;
    color: #2d1839;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.cosmick-service-immediate-btn {
    width: 100%;
    background: white;
    color: #ff675b;
    border: none;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cosmick-service-immediate-btn:hover {
    background: #fdc785;
    color: #2d1839;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 199, 133, 0.4);
}

.cosmick-service-immediate-btn i {
    font-size: 1.2rem;
}

.cosmick-urgent-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    line-height: 1;
}

.cosmick-urgent-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Styles */
.cosmick-service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 24, 57, 0.8);
    backdrop-filter: blur(5px);
}

.cosmick-service-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cosmick-service-modal-header {
    background: linear-gradient(135deg, #ff675b 0%, #f2675d 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.cosmick-service-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="modalDots" patternUnits="userSpaceOnUse" width="15" height="15"><circle cx="1.5" cy="1.5" r="0.8" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23modalDots)"/></svg>');
    opacity: 0.3;
}

.cosmick-service-modal-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cosmick-service-modal-header .urgent-badge {
    background: #fdc785;
    color: #2d1839;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cosmick-service-modal-header p {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cosmick-service-modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 200px);
}

.cosmick-service-close {
    color: white;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cosmick-service-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ========================================
   Contact Form Section Updates
========================================== */

.cosmick-service-cta-section {
    background: white;
    color: #2d1839;
    padding: 80px 0;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e9ecef;
}

.cosmick-service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaDots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="2" cy="2" r="1" fill="rgba(45,24,57,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaDots)"/></svg>');
    opacity: 0.5;
}

.cosmick-service-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cosmick-service-cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d1839;
}

.cosmick-service-cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #666;
}

.cosmick-service-contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #6e6e6e;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cosmick-service-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cosmick-service-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.cosmick-service-contact-item i {
    font-size: 1.3rem;
    color: #fdc785;
}

/* ========================================
   Responsive Design
========================================== */

@media (max-width: 1200px) {
    .cosmick-service-content-section {
        padding: 40px;
    }

    .cosmick-service-sidebar-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .cosmick-service-hero {
        padding: 100px 0 60px;
    }

    .cosmick-service-title {
        font-size: 2.8rem;
    }

    .cosmick-service-hero-tagline {
        font-size: 1.2rem;
    }

    .cosmick-service-quick-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cosmick-service-sidebar {
        margin-top: 40px;
    }

    .cosmick-service-section-title {
        font-size: 2rem;
    }

    .cosmick-service-immediate-cta {
        right: 20px;
        max-width: 280px;
    }

    .cosmick-service-cta-content h2 {
        font-size: 2.5rem;
    }

    .cosmick-service-contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .cosmick-service-content {
        padding: 60px 0;
    }

    .cosmick-service-content-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .cosmick-service-title {
        font-size: 2.2rem;
    }

    .cosmick-service-hero-tagline {
        font-size: 1.1rem;
    }

    .cosmick-service-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cosmick-service-btn {
        justify-content: center;
        text-align: center;
    }

    .cosmick-service-included-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cosmick-service-benefits-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cosmick-service-process-step {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .cosmick-service-process-step::before {
        display: none;
    }

    .cosmick-service-step-number {
        margin: 0 0 20px 0;
    }

    .cosmick-service-section-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cosmick-service-sidebar-card {
        padding: 25px 20px;
    }

    .cosmick-service-immediate-cta {
        right: 15px;
        max-width: 250px;
        padding: 20px;
    }

    .cosmick-service-immediate-cta h3 {
        font-size: 1.2rem;
    }

    .cosmick-service-cta-content h2 {
        font-size: 2rem;
    }

    .cosmick-service-contact-form-wrapper {
        padding: 25px;
    }

    .cosmick-service-contact-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .cosmick-service-title {
        font-size: 1.9rem;
    }

    .cosmick-service-content-section {
        padding: 25px 15px;
    }

    .cosmick-service-sidebar-card {
        padding: 20px 15px;
    }

    .cosmick-service-meta-badges {
        justify-content: center;
    }

    .cosmick-service-hero-visual {
        margin-top: 30px;
    }

    .cosmick-service-icon-large {
        width: 100px;
        height: 100px;
    }

    .cosmick-service-icon-large i {
        font-size: 2.5rem;
    }

    .cosmick-service-immediate-cta {
        right: 10px;
        max-width: 220px;
        padding: 15px;
    }

    .cosmick-service-immediate-cta h3 {
        font-size: 1.1rem;
    }

    .cosmick-service-immediate-cta p {
        font-size: 0.9rem;
    }

    .cosmick-service-cta-content h2 {
        font-size: 1.8rem;
    }

    .cosmick-service-contact-form-wrapper {
        padding: 20px;
    }
}

/* ========================================
   Awards & Badges Section
========================================== */

.cosmick-service-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cosmick-service-award-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cosmick-service-award-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff675b;
}

.award-image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    padding: 15px;
}

.award-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

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

.award-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d1839;
    margin-bottom: 8px;
    line-height: 1.3;
}

.award-year {
    display: inline-block;
    background: #fdc785;
    color: #2d1839;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.award-description {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   Technologies & Tools Section
========================================== */

.technologies-section {
    margin-bottom: 40px;
}

.technologies-grid {
    margin-top: 20px;
}

.tech-group {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff675b;
}

.tech-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d1839;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2d1839;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.tech-item:hover {
    background: #ff675b;
    color: white;
    border-color: #ff675b;
    transform: translateY(-1px);
}

/* ========================================
   FAQ Section
========================================== */

.faq-section {
    margin-bottom: 40px;
}

.faq-accordion {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-color: #ff675b;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d1839;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #ff675b;
}

.faq-question:focus {
    outline: none;
    background: #f8f9fa;
}

.faq-question i {
    color: #ff675b;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.show {
    max-height: 1000px;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Service Gallery Section
========================================== */

.gallery-section {
    margin-bottom: 40px;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* ========================================
   Before & After Gallery Section
========================================== */

.before-after-gallery {
    margin-top: 30px;
}

.before-after-item {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff675b;
}

.comparison-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d1839;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.comparison-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(45, 24, 57, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-label.before {
    background: rgba(52, 58, 64, 0.9);
}

.comparison-label.after {
    background: rgba(255, 103, 91, 0.9);
}

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .service-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .comparison-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ========================================
   Technology Specialties Section
========================================== */

.cosmick-service-specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.cosmick-service-specialty-item {
    background: #f8f9fa;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 140px;
}

.cosmick-service-specialty-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #ff675b;
    background: white;
}

.specialty-image {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specialty-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.specialty-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cosmick-service-specialty-item:hover .specialty-logo {
    transform: scale(1.05);
}

.specialty-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.specialty-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d1839;
    margin-bottom: 6px;
    line-height: 1.3;
}

.specialty-description {
    color: #7f8c8d;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
    flex-grow: 1;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .cosmick-service-awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cosmick-service-specialties-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .cosmick-service-award-item {
        padding: 25px 20px;
    }

    .cosmick-service-specialty-item {
        padding: 15px 10px;
        min-height: 120px;
    }

    .award-image {
        width: 60px;
        height: 60px;
    }

    .specialty-image {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .award-title {
        font-size: 1.1rem;
    }

    .specialty-name {
        font-size: 0.8rem;
    }

    .specialty-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .cosmick-service-specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .cosmick-service-specialty-item {
        padding: 12px 8px;
        min-height: 100px;
    }

    .specialty-image {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .specialty-name {
        font-size: 0.75rem;
    }

    .specialty-description {
        font-size: 0.65rem;
    }
}

/* ========================================
   Gravity Forms Custom Styles
========================================== */

/* Override default Gravity Forms styles to match theme */
.gform_wrapper,
.gform_wrapper.gform_legacy_markup_wrapper,
.gform_wrapper.gform-theme {
    max-width: 100% !important;
    margin: 0 !important;
}

/* Form container styling */
.gform_wrapper form {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* Form body */
.gform_body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Fields container */
.gform_fields {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Full width fields */
.gfield.gfield--width-full,
.gfield--type-checkbox,
.gfield--type-textarea,
.gfield--type-select {
    grid-column: 1 / -1 !important;
}

/* Half width fields */
.gfield.gfield--width-half {
    grid-column: auto !important;
}

/* Field styling */
.gfield {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Labels */
.gfield_label,
.gform-field-label {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* Hidden labels (for placeholders) */
.gfield.hidden_label .gfield_label {
    position: absolute !important;
    left: -9999px !important;
    clip: rect(0,0,0,0) !important;
}

/* Input containers */
.ginput_container {
    margin: 0 !important;
    position: relative !important;
}

/* Text inputs, email, phone, textarea */
.ginput_container input[type="text"],
.ginput_container input[type="email"],
.ginput_container input[type="tel"],
.ginput_container input[type="url"],
.ginput_container textarea,
.ginput_container select {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    line-height: 1.5 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    box-sizing: border-box !important;
}

/* Input focus states */
.ginput_container input[type="text"]:focus,
.ginput_container input[type="email"]:focus,
.ginput_container input[type="tel"]:focus,
.ginput_container input[type="url"]:focus,
.ginput_container textarea:focus,
.ginput_container select:focus {
    outline: none !important;
    border-color: #fdc785 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(253, 199, 133, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Placeholder styling */
.ginput_container input::placeholder,
.ginput_container textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

/* Textarea specific */
.ginput_container textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Select dropdowns */
.ginput_container select {
    cursor: pointer !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%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") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

/* Select option styling */
.ginput_container select option {
    background: #2d1839 !important;
    color: white !important;
    padding: 10px !important;
}

/* Checkbox and Radio styling */
.gfield_checkbox,
.gfield_radio {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 15px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gchoice {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.gchoice:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(253, 199, 133, 0.5) !important;
    transform: translateY(-2px) !important;
}

.gchoice input[type="checkbox"],
.gchoice input[type="radio"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    cursor: pointer !important;
    accent-color: #fdc785 !important;
    flex-shrink: 0 !important;
}

.gchoice label {
    color: white !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    flex-grow: 1 !important;
}

.gchoice input[type="checkbox"]:checked + label,
.gchoice input[type="radio"]:checked + label {
    color: #fdc785 !important;
    font-weight: 600 !important;
}

/* Required asterisk */
.gfield_required_asterisk,
.gfield_required {
    color: #fdc785 !important;
    font-weight: bold !important;
}

/* Submit button */
.gform_footer {
    margin-top: 30px !important;
    padding: 0 !important;
    text-align: center !important;
}

.gform_button,
.gform_wrapper input[type="submit"],
.gform_wrapper .gform_button {
    background: linear-gradient(135deg, #ff675b 0%, #f2675d 100%) !important;
    color: white !important;
    border: none !important;
    padding: 18px 40px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(255, 103, 91, 0.3) !important;
    min-width: 200px !important;
    font-family: inherit !important;
}

.gform_button:hover,
.gform_wrapper input[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
    background: linear-gradient(135deg, #f2675d 0%, #ff675b 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(255, 103, 91, 0.4) !important;
}

.gform_button:active,
.gform_wrapper input[type="submit"]:active,
.gform_wrapper .gform_button:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 20px rgba(255, 103, 91, 0.3) !important;
}

/* Error messages */
.gfield_error .gfield_label,
.gform_wrapper .gfield_error .gfield_label {
    color: #ff6b6b !important;
}

.gfield_error input,
.gfield_error textarea,
.gfield_error select {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1) !important;
}

.validation_error,
.gform_validation_error {
    background: rgba(255, 107, 107, 0.1) !important;
    border: 2px solid #ff6b6b !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    color: white !important;
}

.validation_message {
    color: #ff6b6b !important;
    font-size: 0.9rem !important;
    margin-top: 8px !important;
    display: block !important;
}

/* Hidden fields */
.gfield_visibility_hidden {
    display: none !important;
}

/* Date picker styling */
.ginput_container_date input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
}

/* Loading spinner */
.gform_ajax_spinner {
    filter: invert(1) !important;
}

/* Success/Confirmation message */
.gform_confirmation_wrapper {
    background: rgba(46, 204, 113, 0.1) !important;
    border: 2px solid #2ecc71 !important;
    border-radius: 12px !important;
    padding: 30px !important;
    text-align: center !important;
    color: white !important;
}

.gform_confirmation_message {
    color: white !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gform_fields {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .gfield_checkbox,
    .gfield_radio {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .ginput_container input,
    .ginput_container textarea,
    .ginput_container select {
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
    }

    .gform_button,
    .gform_wrapper input[type="submit"] {
        padding: 15px 30px !important;
        font-size: 1rem !important;
        width: 100% !important;
    }
}

/* Theme-specific overrides for modal form */
.cosmick-service-modal .gform_wrapper {
    background: transparent !important;
}

.cosmick-service-modal .gfield_label {
    color: #2d1839 !important;
}

.cosmick-service-modal .ginput_container input,
.cosmick-service-modal .ginput_container textarea,
.cosmick-service-modal .ginput_container select {
    background: white !important;
    color: #2d1839 !important;
    border-color: #e0e0e0 !important;
}

.cosmick-service-modal .ginput_container input:focus,
.cosmick-service-modal .ginput_container textarea:focus,
.cosmick-service-modal .ginput_container select:focus {
    border-color: #ff675b !important;
    box-shadow: 0 0 0 3px rgba(255, 103, 91, 0.2) !important;
}

.cosmick-service-modal .ginput_container input::placeholder,
.cosmick-service-modal .ginput_container textarea::placeholder {
    color: rgba(45, 24, 57, 0.6) !important;
}

.cosmick-service-modal .gchoice {
    background: rgba(45, 24, 57, 0.05) !important;
    border-color: #e0e0e0 !important;
}

.cosmick-service-modal .gchoice label {
    color: #2d1839 !important;
}

.cosmick-service-modal .gchoice:hover {
    background: rgba(45, 24, 57, 0.08) !important;
    border-color: #ff675b !important;
}

/* ========================================
   Animation and Interaction Enhancements
========================================== */

.cosmick-service-content-section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.cosmick-service-included-item,
.cosmick-service-benefit-item,
.cosmick-service-process-step {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.cosmick-service-btn:focus,
.cosmick-service-contact-option:focus {
    outline: 2px solid #ff675b;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .cosmick-service-sidebar,
    .cosmick-service-hero-actions,
    .cosmick-service-summary-actions,
    .cosmick-service-contact-options {
        display: none;
    }

    .cosmick-service-hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }

    .cosmick-service-content-section {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* ========================================
   Services Archive Styles
========================================== */

/* Archive Container */
.cosmick-services-archive {
    background: #f8f9fa;
    min-height: 100vh;
    margin-bottom: 200px;
}

/* Archive Header */
.cosmick-services-archive-header {
    background: linear-gradient(135deg, #2d1839 0%, #ff675b 100%);
    color: white;
    padding: 60px 0 60px;
    text-align: center;
}

.cosmick-services-archive-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cosmick-services-archive-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Archive Content */
.cosmick-services-archive-content {
    padding: 60px 0;
}

/* Services Grid */
.cosmick-services-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Service Card */
.cosmick-service-archive-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.cosmick-service-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Service Image */
.cosmick-service-archive-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cosmick-service-archive-image .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosmick-service-archive-card:hover .service-image {
    transform: scale(1.05);
}

.cosmick-service-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff675b;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Service Content */
.cosmick-service-archive-content {
    padding: 25px;
}

.cosmick-service-archive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cosmick-service-archive-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff675b, #f2675d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cosmick-service-archive-category {
    background: #f8f9fa;
    color: #2d1839;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Service Title */
.cosmick-service-archive-title {
    margin-bottom: 12px;
    line-height: 1.3;
}

.cosmick-service-archive-title a {
    color: #2d1839;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.cosmick-service-archive-title a:hover {
    color: #ff675b;
}

/* Service Text */
.cosmick-service-archive-tagline {
    color: #ff675b;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cosmick-service-archive-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Service Meta */
.cosmick-service-archive-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cosmick-service-archive-price,
.cosmick-service-archive-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
}

.cosmick-service-archive-price i,
.cosmick-service-archive-delivery i {
    color: #ff675b;
}

/* Service Actions */
.cosmick-service-archive-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cosmick-service-archive-btn-primary {
    background: #ff675b;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.cosmick-service-archive-btn-primary:hover {
    background: #e55a4e;
    color: white;
    transform: translateY(-2px);
}

.cosmick-service-archive-btn-secondary {
    background: #333333;
    color: white;
    padding: 12px 20px;
    border: 2px solid #333333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.cosmick-service-archive-btn-secondary:hover {
    background: #2d1839;
    border-color: #2d1839;
    color: white;
}

/* Empty State */
.cosmick-services-archive-empty {
    text-align: center;
    padding: 80px 20px;
}

.cosmick-services-empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.cosmick-services-empty-content i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.cosmick-services-empty-content h2 {
    color: #2d1839;
    margin-bottom: 15px;
}

.cosmick-services-empty-content p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Design for Archive */
@media (max-width: 768px) {
    .cosmick-services-archive-title h1 {
        font-size: 2.5rem;
    }

    .cosmick-services-archive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cosmick-service-archive-actions {
        flex-direction: column;
    }

    .cosmick-service-archive-btn-primary,
    .cosmick-service-archive-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cosmick-service-archive-meta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .cosmick-services-archive-header {
        padding: 40px 0 30px;
    }

    .cosmick-services-archive-title h1 {
        font-size: 2rem;
    }

    .cosmick-services-archive-content {
        padding: 40px 0;
    }

    .cosmick-service-archive-content {
        padding: 20px;
    }
}

/* Quote Popup Styles */
.cosmick-quote-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cosmick-quote-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.cosmick-quote-popup-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cosmick-quote-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.cosmick-quote-popup-header h3 {
    color: #2d1839;
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.cosmick-quote-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.cosmick-quote-popup-close:hover {
    color: #ff675b;
}

.cosmick-quote-popup-body {
    padding: 0 30px 30px;
}

.cosmick-quote-popup-body p {
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Popup Responsive */
@media (max-width: 768px) {
    .cosmick-quote-popup-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .cosmick-quote-popup-header,
    .cosmick-quote-popup-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}