/*--------------------------------------------------------------
# Utility & Helper Classes
--------------------------------------------------------------*/

/* Text utilities */
.truncate-css {
    display: inline-block;
    width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate-nombre-producto {
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: fit-content;
}

.truncate-css-confirmacion-compra {
    display: inline-block;
    width: 15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Margins & Spacing */
.margintop {
    margin-top: 6%;
}

.margen {
    margin-top: 8%;
}

.gr-line {
    border-bottom: 1px solid var(--primary-green);
    margin: 10px;
}

/* Form utilities */
.no-arrows {
    margin: 0% !important;
    padding: 0% !important;
    border-radius: 0%;
}

.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0 !important;
}

.no-arrows[type=number] {
    -moz-appearance: textfield;
}

/* Input fields */
.input-field {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    margin: 10px 0;
    border: 2px solid #3a5f0b;
    border-radius: 5px;
    background-color: #f5fff0;
    color: #2d3e1e;
    font-size: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
    border-color: #5c8f1b;
    box-shadow: 0 0 8px rgba(92, 143, 27, 0.5);
    outline: none;
}

.input-field::placeholder {
    color: #8ba27c;
    font-style: italic;
}

.input2_textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #b3d5a3;
    border-radius: 5px;
    background-color: #ffffff;
    color: #2d3e1e;
    font-size: 14px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input2_textarea:focus {
    border-color: #5c8f1b;
    outline: none;
    box-shadow: 0 0 4px #5c8f1b;
}

.texarea1 {
    resize: none;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #3a5f0b;
}

.label-contacto1 {
    font-weight: bold;
    color: #3a5f0b;
    text-align: left;
}

/* Select custom arrow */
.select-flecha {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23666' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
}

.select-flecha:focus {
    border-color: #007bff;
    outline: none;
}

/* Floating buttons */
.floating-btn-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;
}

.floating-btn {
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-1 {
    background-color: #1abc9c;
    right: 20px;
}

.btn-2 {
    background-color: #3498db;
    right: 100px;
}

.btn-3 {
    background-color: #9b59b6;
    right: 180px;
}

.btn-4 {
    background-color: #e74c3c;
    right: 260px;
}

.btn-5 {
    background-color: #f39c12;
    right: 340px;
}

/* WhatsApp button */
.btn-whatsapp {
    position: fixed;
    right: 15px;
    bottom: 70px;
    z-index: 997;
    background: #25D366;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.btn-whatsapp i {
    font-size: 24px;
    color: white;
    line-height: 0;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: white;
}

/* Download apps section */
.descargas-aplicaciones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background-color: white;
    padding: 2%;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    gap: 1rem;
}

.floating-btn-descargas {
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 7rem;
    height: 7rem;
}

@media only screen and (max-width: 768px) {
    .float-btn-descargas {
        display: none;
        position: sticky;
        top: 50%;
        left: 50%;
    }

    .descargas {
        display: flex;
        position: sticky;
        top: 10%;
        left: 50%;
        margin: 4%;
    }
}

.descargas {
    display: none;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-green);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: var(--primary-white);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--dark-green);
    color: var(--primary-white);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Dropzone */
.dropzone {
    border: 2px dashed #007bff;
    border-radius: 6px;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    margin-bottom: 20px;
}

.dz-success-mark,
.dz-error-mark {
    display: none !important;
}

/* SweetAlert z-index fix */
.swal-z-index {
    z-index: 200000 !important;
}

/* Form check custom */
.form-check-input:checked {
    background-color: #24b540;
    border-color: #24b540;
}

/* Volver atrás button */
.btn-volver-atras {
    right: 10px;
    position: absolute;
    top: 10px;
    font-size: 2.5rem;
    color: #24b540;
}

/* Button link custom */
.btn-link:hover {
    color: #24b540;
}

/* List group custom */
.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #24b540;
    border-color: #24b540;
}
/*--------------------------------------------------------------
# FAQ Section - Modern Design
--------------------------------------------------------------*/

.faq {
    padding: 60px 0;
    background: #ffffff;
}

.faq.section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq .section-title {
    margin-bottom: 50px;
}

.faq .section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.faq .section-title p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list ul {
    padding: 0;
    list-style: none;
}

.faq-list li {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-list li:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-list .icon-help {
    font-size: 1.5rem;
    color: #24b540;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-list a {
    display: flex;
    align-items: center;
    padding: 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-list a:hover {
    color: #24b540;
}

.faq-list .icon-show,
.faq-list .icon-close {
    margin-left: auto;
    font-size: 1.2rem;
    color: #24b540;
    transition: transform 0.3s ease;
}

.faq-list .icon-close {
    display: none;
}

.faq-list a.collapsed .icon-close {
    display: none;
}

.faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq-list a:not(.collapsed) .icon-show {
    display: none;
}

.faq-list a:not(.collapsed) .icon-close {
    display: inline-block;
    transform: rotate(180deg);
}

.faq-list .collapse {
    border-top: 1px solid #e9ecef;
}

.faq-list .collapse.show {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-list p {
    padding: 24px;
    padding-left: 64px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq .section-title h2 {
        font-size: 2rem;
    }
    
    .faq-list a {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    
    .faq-list p {
        padding: 15px 20px;
        padding-left: 45px;
        font-size: 0.9rem;
    }
    
    .faq-list .icon-help {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}

/*--------------------------------------------------------------
# Contact Section - Modern Design
--------------------------------------------------------------*/

.contact {
    padding: 60px 0;
    background: #ffffff;
}

.contact .section-title {
    margin-bottom: 50px;
}

.contact .section-title h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact .section-title p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
}

.contact .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact .form-control:focus {
    border-color: #24b540;
    box-shadow: 0 0 0 0.2rem rgba(36, 181, 64, 0.15);
    background: #ffffff;
}

.contact .form-control::placeholder {
    color: #adb5bd;
}

.contact textarea.form-control {
    resize: vertical;
    min-height: 128px;
}

.contact .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 181, 64, 0.3) !important;
}

@media (max-width: 768px) {
    .contact .section-title h2 {
        font-size: 2rem;
    }
    
    .contact .card {
        padding: 25px !important;
    }
}

/*--------------------------------------------------------------
# Banner Slider Section - Modern Design
--------------------------------------------------------------*/

#combined-section {
    position: relative;
    overflow: hidden;
}

.swiper2 {
    width: 100%;
    height: 600px;
    position: relative;
    background: #f8f9fa;
}

.swiper2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.swiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.swiper2 .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons - Modern Style */
.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper2 .swiper-button-prev:after,
.swiper2 .swiper-button-next:after {
    font-size: 20px;
    font-weight: 700;
    color: #24b540;
}

.swiper2 .swiper-button-prev:hover,
.swiper2 .swiper-button-next:hover {
    background: #24b540;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(36, 181, 64, 0.3);
}

.swiper2 .swiper-button-prev:hover:after,
.swiper2 .swiper-button-next:hover:after {
    color: #ffffff;
}

/* Pagination - Modern Style */
.swiper2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper2 .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: #24b540;
    opacity: 1;
}

.swiper2 .swiper-pagination-bullet:hover {
    opacity: 1;
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# Branch Cards Section - Modern Design
--------------------------------------------------------------*/

#horario-atención {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 320px)) !important;
    gap: 24px !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override Bootstrap .row styles */
#horario-atención.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

#horario-atención.row > * {
    width: auto !important;
    max-width: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
}

#horario-atención .card {
    background: #ffffff;
    border: none !important;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#horario-atención .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #24b540 0%, #1e9535 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#horario-atención .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(36, 181, 64, 0.15);
}

#horario-atención .card:hover::before {
    transform: scaleX(1);
}

/* Card content wrapper */
#horario-atención .card .card-content {
    padding: 20px;
}

/* Branch gallery */
#horario-atención .card .branch-gallery {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}

#horario-atención .card .branch-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#horario-atención .card:hover .branch-gallery img {
    transform: scale(1.1);
}

#horario-atención .card .branch-gallery .gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #24b540 0%, #1e9535 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(36, 181, 64, 0.4);
}

#horario-atención .card h5 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #24b540;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#horario-atención .card h5::before {
    content: '📍';
    font-size: 1.5rem;
}

#horario-atención .card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

#horario-atención .card h4::before {
    content: '🕐';
    font-size: 1.3rem;
}

/* Schedule Section Styles */
#horario-atención .card .schedule-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

#horario-atención .card .schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid #24b540;
}

#horario-atención .card .schedule-item:hover {
    background: linear-gradient(135deg, #e8f8ed 0%, #f8f9fa 100%);
    transform: translateX(4px);
}

#horario-atención .card .schedule-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
}

#horario-atención .card .schedule-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

#horario-atención .card .schedule-day {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

#horario-atención .card .schedule-time {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

#horario-atención .card .schedule-phone {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

#horario-atención .card .phone-item {
    grid-column: 1 / -1;
}

#horario-atención .card .phone-item .schedule-icon {
    color: #24b540;
}

#horario-atención .card .contact-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
}

#horario-atención .card .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#horario-atención .card .contact-info li {
    margin: 0;
}

#horario-atención .card .contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #24b540 0%, #1e9535 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(36, 181, 64, 0.2);
}

#horario-atención .card .contact-info a::before {
    content: '💬';
    font-size: 1.2rem;
}

#horario-atención .card .contact-info a:hover {
    background: linear-gradient(135deg, #25d366 0%, #1e9535 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 181, 64, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .swiper2 {
        height: 450px;
    }
    
    #horario-atención {
        gap: 20px;
    }
    
    #horario-atención .card {
        max-width: 100%;
    }
}
    
    #horario-atención {
        gap: 20px;
    }
    
    #horario-atención .card {
        max-width: 100%;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .swiper2 {
        height: 350px;
    }
    
    .swiper2 .swiper-button-prev,
    .swiper2 .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .swiper2 .swiper-button-prev:after,
    .swiper2 .swiper-button-next:after {
        font-size: 16px;
    }
    
    #horario-atención {
        gap: 16px;
    }
    
    #horario-atención .card {
        padding: 24px;
    }
    
    #horario-atención .card h5 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    #horario-atención .card h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    #horario-atención .card .schedule-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    #horario-atención .card .schedule-item {
        padding: 12px;
    }
    
    #horario-atención .card .contact-info a {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .swiper2 {
        height: 280px;
    }
}

/*--------------------------------------------------------------
# Gallery Section - Modern Design (Instalaciones)
--------------------------------------------------------------*/

.portfolio {
    padding: 0;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #24b540 0%, #1e9535 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(36, 181, 64, 0.2);
}

.portfolio-item:hover::before {
    transform: scaleX(1);
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.portfolio-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-wrap img {
    transform: scale(1.15) rotate(2deg);
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.portfolio-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.portfolio-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.portfolio-links a:hover {
    background: #24b540;
    border-color: #24b540;
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 6px 20px rgba(36, 181, 64, 0.4);
}

/* Badge de Instalación */
.portfolio-item .installation-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #24b540 0%, #1e9535 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(36, 181, 64, 0.4);
    z-index: 2;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive Gallery */
@media (max-width: 992px) {
    .portfolio-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .portfolio-info {
        padding: 20px;
    }
    
    .portfolio-info h4 {
        font-size: 1rem;
    }
}

/* Combined Section Enhancement */
#combined-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

#combined-section .container > div:not(:last-child) {
    position: relative;
}

/* Separator between sections */
#combined-section #portfolio {
    margin-top: 40px;
}
