/* Our Ethos Page Styles */

.principle-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6725, #ff8547);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.principle-card:hover::before {
    transform: scaleX(1);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 103, 37, 0.15);
    border-color: #ff6725;
}

.principle-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6725, #ff8547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 103, 37, 0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6725, #ff8547);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 103, 37, 0.2);
}

.pillar-icon i {
    font-size: 40px;
    color: white;
}

.quote-box {
    background: linear-gradient(135deg, #ff6725 0%, #ff8547 100%);
    padding: 60px 40px;
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.promise-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff6725;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(255, 103, 37, 0.15);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6725, #ff8547);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.value-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.value-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6725;
    font-weight: bold;
    font-size: 18px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #ff6725 0%, #ff8547 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 80px 80px;
}

.never-become-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.never-item {
    background: #ffede5;
    padding: 25px;
    border-radius: 15px;
    border: 2px dashed #ff6725;
    position: relative;
}

.never-item::before {
    content: '✗';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #ff6725;
    opacity: 0.3;
}

.stats-box {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    margin: 60px 0;
}

.floating-animation {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.highlight-box {
    background: #ffede5;
    border-left: 4px solid #ff6725;
    border-radius: 10px;
    padding: 25px;
}

.grid-item-box {
    background: #ff6725;
    border-radius: 10px;
    padding: 20px;
}

.media-gallery .bg {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Mobile Responsive Spacing */
@media screen and (max-width: 991px) {
    /* Reduce section padding on mobile */
    .pt-100 {
        padding-top: 50px !important;
    }

    .pb-100 {
        padding-bottom: 50px !important;
    }

    /* Reduce margin spacing */
    .mt-100 {
        margin-top: 50px !important;
    }

    .mb-100 {
        margin-bottom: 50px !important;
    }

    .mb-80 {
        margin-bottom: 40px !important;
    }

    .mb-60 {
        margin-bottom: 30px !important;
    }

    /* Add spacing between stacked columns */
    .col-lg-6:not(:last-child) {
        margin-bottom: 30px;
    }

    /* Reduce heading sizes on mobile */
    h2[style*="font-size: 42px"] {
        font-size: 32px !important;
    }

    h3[style*="font-size: 36px"] {
        font-size: 28px !important;
    }

    /* Reduce quote box padding */
    .quote-box {
        padding: 40px 30px !important;
    }

    /* Smaller principle cards */
    .principle-card {
        padding: 30px 20px;
    }

    /* Media gallery min-height reduction */
    .media-gallery {
        min-height: 300px !important;
    }
}
