/* aerial.css - Page-specific styles only */
/* Shared styles are in services-common.css */

.service-grid-container { 
    display: grid; 
    grid-template-columns: repeat(6, 1fr); 
    grid-auto-rows: 350px; 
    gap: 28px; 
}

/* Page-specific box-content padding */
.box-content { 
    padding: 45px; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    width: 100%;
    gap: 20px;
}

.service-box:hover .box-content {
    padding: 50px 45px;
}

.box-main { grid-column: span 3; }
.box-showcase { grid-column: span 3; }
.box-small-1, .box-small-2, .box-small-3 { grid-column: span 2; }

.box-text-wrap { 
    flex: 1; 
}

.box-content h3.accent-title { 
    font-size: 2.2rem; 
    margin: 0; 
    color: #fff; 
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover .box-content h3.accent-title {
    transform: translateX(5px);
    text-shadow: 0 4px 20px rgba(255, 204, 51, 0.5);
}

.box-content h4 { 
    font-size: 1.6rem; 
    margin: 0; 
    color: #ffcc33; 
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-box:hover .box-content h4 {
    transform: translateX(5px);
    color: #ffd966;
    text-shadow: 0 4px 20px rgba(255, 204, 51, 0.6);
}

.box-content p { 
    font-size: 1rem; 
    color: #bbb; 
    margin-top: 12px; 
    margin-bottom: 0; 
    line-height: 1.6; 
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-box:hover .box-content p {
    opacity: 1;
    transform: translateX(5px);
    color: #ccc;
}

.bento-arrow {
    width: 40px; 
    height: 40px; 
    background: #ffcc33; 
    color: #000;
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.2rem; 
    font-weight: 900; 
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 204, 51, 0.4);
}

.service-box:hover .bento-arrow {
    transform: translateX(8px) scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 204, 51, 0.6), 0 0 15px rgba(255, 204, 51, 0.4);
    background: #fff;
}

@media (max-width: 1024px) {
    .service-grid-container { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .box-main, .box-showcase, .box-small-1, .box-small-2, .box-small-3 { grid-column: span 1; min-height: 320px; }
}

