/*
 * LIGHT VISUAL UPGRADE CSS
 * EPIC Workshops - Original Pages Preserved
 *
 * This file contains only subtle visual improvements to the original EPIC pages.
 * All original content, structure, and functionality is preserved.
 * Only spacing, typography, and visual polish improvements are applied.
 */

/* ========================================
   HEADER SPACING IMPROVEMENTS
   ======================================== */

/* Slightly better header spacing */
.elementor-element-2f18dcc3 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* Better social icon alignment */
.elementor-social-icons-wrapper.elementor-grid {
    gap: 8px !important;
}

/* Improve header contact info spacing */
.elementor-icon-list-items {
    gap: 8px !important;
}

.elementor-icon-list-item {
    margin-bottom: 0 !important;
}

/* ========================================
   HERO SECTION IMPROVEMENTS
   ======================================== */

/* Slightly cleaner hero spacing */
.elementor-element-33ce7ec,
.elementor-element-dfda2b0 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Better form card styling */
.elementor-element-76d7a96 .elementor-widget-container,
.elementor-element-3324f1c .elementor-widget-container {
    background: #ffffff !important;
    padding: 24px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Better form input spacing */
.elementor-form-fields-wrapper {
    gap: 12px !important;
}

.elementor-field-group {
    margin-bottom: 12px !important;
}

/* Cleaner input styling */
.elementor-field-textual {
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
}

.elementor-field-textual:focus {
    border-color: #2d5f3e !important;
    outline: none !important;
}

/* Better button styling */
.elementor-button {
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.elementor-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(45, 95, 62, 0.2) !important;
}

/* ========================================
   TEXT & TYPOGRAPHY IMPROVEMENTS
   ======================================== */

/* Better line height for body text */
.elementor-widget-text-editor p {
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

/* Better heading spacing */
.elementor-heading-title {
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

/* Improve text readability */
.elementor-text-editor {
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* ========================================
   COMPANY LOGO GRID IMPROVEMENTS
   ======================================== */

/* Better logo grid spacing */
.elementor-gallery__container {
    gap: 16px !important;
}

/* Cleaner logo styling */
.elementor-gallery-item img {
    object-fit: contain !important;
    max-height: 48px !important;
    width: auto !important;
    transition: all 0.3s ease !important;
}

.elementor-gallery-item img:hover {
    transform: scale(1.05) !important;
}

/* ========================================
   AS SEEN ON SECTION IMPROVEMENTS
   ======================================== */

/* Better media logo alignment */
.elementor-image-gallery {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    justify-content: center !important;
    align-items: center !important;
}

.elementor-image-gallery img {
    max-height: 56px !important;
    object-fit: contain !important;
    width: auto !important;
}

/* ========================================
   VIP CLIENTS SECTION IMPROVEMENTS
   ======================================== */

/* Better VIP client thumbnail spacing */
.elementor-widget-image-gallery {
    margin: 24px 0 !important;
}

.elementor-image-gallery .gallery-item {
    padding: 8px !important;
}

/* ========================================
   REVIEW CARD IMPROVEMENTS
   ======================================== */

/* Better review card spacing */
.elementor-widget-testimonial-carousel {
    margin: 24px 0 !important;
}

/* Cleaner review styling */
.elementor-testimonial-wrapper {
    padding: 16px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #f0f0f0 !important;
}

.elementor-testimonial-content {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #555 !important;
}

.elementor-testimonial-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2d5f3e !important;
    margin-top: 12px !important;
}

/* ========================================
   GALLERY IMAGE IMPROVEMENTS
   ======================================== */

/* Better workshop gallery grid */
.elementor-gallery__item {
    border-radius: 8px !important;
    overflow: hidden !important;
}

.elementor-gallery__thumbnail {
    transition: transform 0.3s ease !important;
}

.elementor-gallery__thumbnail:hover {
    transform: scale(1.05) !important;
}

/* ========================================
   SECTION SPACING IMPROVEMENTS
   ======================================== */

/* Consistent section padding */
.elementor-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Better content spacing within sections */
.e-con-inner {
    gap: 24px !important;
}

/* ========================================
   MOBILE RESPONSIVENESS IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    /* Smaller section padding on mobile */
    .elementor-section {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    /* Better mobile form spacing */
    .elementor-element-76d7a96 .elementor-widget-container,
    .elementor-element-3324f1c .elementor-widget-container {
        padding: 20px !important;
    }

    /* Cleaner mobile logo grid */
    .elementor-gallery__container {
        gap: 12px !important;
    }

    .elementor-gallery-item img {
        max-height: 36px !important;
    }

    /* Better mobile text sizing */
    .elementor-text-editor {
        font-size: 14px !important;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden !important;
    }

    .elementor {
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller spacing for very small screens */
    .elementor-section {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
}

/* ========================================
   PREVENT HORIZONTAL SCROLL
   ======================================== */

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.elementor {
    overflow-x: hidden !important;
}

.elementor-section {
    max-width: 100% !important;
}

/* ========================================
   SUBTLE ENHANCEMENTS
   ======================================== */

/* EPIC green accents for links */
a {
    color: #2d5f3e !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

a:hover {
    color: #1a4a2e !important;
}

/* Gold accent for important headings */
.elementor-heading-title {
    color: #2d5f3e !important;
}

/* Better spacing for lists */
.elementor-icon-list-items {
    list-style: none !important;
    padding: 0 !important;
}

.elementor-icon-list-item {
    padding: 6px 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}

.elementor-icon-list-item:last-child {
    border-bottom: none !important;
}

/* ========================================
   CONTAINER WIDTH IMPROVEMENTS
   ======================================== */

/* Better container max-width for large screens */
@media (min-width: 1200px) {
    .elementor-container {
        max-width: 1140px !important;
    }
}

/* ========================================
   FORM BUTTON IMPROVEMENTS
   ======================================== */

/* Better form button styling */
.elementor-field-type-submit .elementor-button {
    background-color: #2d5f3e !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.elementor-field-type-submit .elementor-button:hover {
    background-color: #1a4a2e !important;
}

/* ========================================
   LOADING & PERFORMANCE
   ======================================== */

/* Smooth transitions */
* {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Better image loading */
img {
    max-width: 100% !important;
    height: auto !important;
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Better focus states */
*:focus {
    outline: 2px solid #2d5f3e !important;
    outline-offset: 2px !important;
}

/* Skip link styling */
.skip-link {
    position: absolute !important;
    top: -40px !important;
    left: 0 !important;
    background: #2d5f3e !important;
    color: white !important;
    padding: 8px !important;
    text-decoration: none !important;
    z-index: 10000 !important;
}

.skip-link:focus {
    top: 0 !important;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .elementor-location-header,
    .elementor-form {
        display: none !important;
    }

    .elementor-section {
        page-break-inside: avoid !important;
    }
}