/* ===========================================
   BRAND SOLUTIONS PAGE STYLES - RESPONSIVE
   =========================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--orange), var(--teal));
    padding: 80px 5%;
    text-align: center;
    color: var(--beige);
}

.page-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Main Section */
.solutions-section {
    padding: 60px 5%;
    background-color: var(--dark);
}

.section-block {
    margin-bottom: 80px;
    position: relative;
}

.section-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    color: var(--light);
    line-height: 1.6;
    max-width: 900px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background-color: rgba(223, 111, 87, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(223, 111, 87, 0.2);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(223, 111, 87, 0.15);
    background-color: rgba(223, 111, 87, 0.15);
}

.solution-card h3 {
    color: var(--orange);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.solution-card p {
    color: var(--light);
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.solution-card h4 {
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.benefit-list {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.benefit-list li {
    color: var(--light);
    font-size: clamp(0.95rem, 1vw, 1rem);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.impact-card {
    background-color: rgba(74, 155, 127, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    border: 1px solid rgba(74, 155, 127, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(74, 155, 127, 0.1) 50%);
    border-radius: 0 0 12px 0;
    transition: all 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(74, 155, 127, 0.15);
    background-color: rgba(74, 155, 127, 0.15);
}

.impact-card:hover::after {
    width: 80px;
    height: 80px;
}

.impact-card h4 {
    color: var(--teal);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.impact-card p {
    color: var(--light);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.why-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-item:hover {
    transform: translateY(-5px);
    background-color: rgba(223, 111, 87, 0.1);
    border-color: rgba(223, 111, 87, 0.2);
    box-shadow: 0 10px 25px rgba(223, 111, 87, 0.1);
}

.why-icon {
    color: var(--orange);
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    min-width: 50px;
    height: 50px;
    background: rgba(223, 111, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    transform: rotate(360deg);
    background: rgba(223, 111, 87, 0.2);
}

.why-content h4 {
    color: var(--light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-content p {
    color: var(--light);
    font-size: clamp(0.95rem, 1vw, 1rem);
    line-height: 1.6;
    opacity: 0.9;
}

/* Button Group */
.btn-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

.btn,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.btn {
    background: var(--orange);
    color: var(--beige);
    border: 2px solid var(--orange);
}

.btn:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(223, 111, 87, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--beige);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 155, 127, 0.3);
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .page-header {
        padding: 100px 8%;
    }

    .solutions-section {
        padding: 80px 8%;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .solution-card {
        padding: 35px 30px;
    }

    .benefit-list li {
        font-size: clamp(1rem, 1.1vw, 1.1rem);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .impact-card {
        padding: 30px 25px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-item {
        padding: 30px;
    }

    .btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .btn,
    .btn-outline {
        width: auto;
        min-width: 250px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .page-header {
        padding: 120px 10%;
    }

    .page-header h1 {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }

    .page-header p {
        font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    }

    .solutions-section {
        padding: 100px 10%;
    }

    .section-block {
        margin-bottom: 100px;
    }

    .section-heading {
        font-size: clamp(2.8rem, 3.8vw, 3.8rem);
    }

    .solutions-grid {
        gap: 40px;
    }

    .solution-card h3 {
        font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    }

    .solution-card p {
        font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    }

    .impact-grid {
        gap: 40px;
    }

    .impact-card {
        padding: 35px 30px;
    }

    .impact-card h4 {
        font-size: clamp(1.5rem, 2vw, 2rem);
    }

    .why-grid {
        gap: 30px;
    }

    .why-item {
        padding: 35px 30px;
    }

    .why-content h4 {
        font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    }

    .why-content p {
        font-size: clamp(1rem, 1.1vw, 1.1rem);
    }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .solutions-section {
        padding: 120px 15%;
    }

    .page-header {
        padding: 140px 15%;
    }

    .solutions-grid {
        gap: 50px;
    }

    .solution-card {
        padding: 45px 40px;
    }

    .impact-grid {
        gap: 50px;
    }

    .impact-card {
        padding: 40px 35px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .page-header {
        padding: 60px 5%;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .solutions-section {
        padding: 40px 5%;
    }

    .section-block {
        margin-bottom: 60px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .solution-card h3 {
        font-size: 1.3rem;
    }

    .solution-card p {
        font-size: 0.95rem;
    }

    .benefit-list li {
        font-size: 0.9rem;
    }

    .impact-card {
        padding: 20px 18px;
    }

    .impact-card h4 {
        font-size: 1.2rem;
    }

    .impact-card p {
        font-size: 0.9rem;
    }

    .why-item {
        padding: 20px;
        gap: 15px;
    }

    .why-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .why-content h4 {
        font-size: 1.1rem;
    }

    .why-content p {
        font-size: 0.9rem;
    }

    .btn,
    .btn-outline {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

/* Special styling for section subheadings */
.section-block h3.section-heading {
    font-size: clamp(2rem, 3vw, 3rem) !important;
    margin-top: 60px;
    margin-bottom: 15px;
}

.section-block h3.section-heading+p.section-text {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem) !important;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Print Styles */
@media print {
    .solutions-section {
        background: white;
        color: black;
    }

    .section-heading,
    .solution-card h3,
    .impact-card h4,
    .why-content h4 {
        color: black;
    }

    .section-text,
    .solution-card p,
    .impact-card p,
    .why-content p,
    .benefit-list li {
        color: #333;
    }

    .btn-group {
        display: none;
    }
}