/* ═════════ ABOUT PAGE SPECIFIC STYLES ════════ */

/* Page Hero with Background Image */
.page-hero {
    background: url('../images/innerbanner/gallery.jpg');
    background-size: cover;
    background-position: center;
   
    padding:60px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    top:70px;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(63, 7, 20, 0.3);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .eyebrow {
    color: var(--orange);
    font-family: var(--ff-head);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.page-hero .sec-h {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 575px) {
    .page-hero p {
        display: none;
    }
    .page-hero .sec-h{
        font-size:28px;
    }
}
/* Section Spacing */
.section {
    padding: 30px 0 0px;
}

/* Brand Story Section */
.story-section {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text .eyebrow {
    color: var(--maroon);
    font-family: var(--ff-head);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.story-text .sec-h {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-btns {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Story Content Styling */
.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color:#000;
    text-align:justify;
}

.story-content .highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
    text-align: center;
    margin: 32px 0;
    font-style: italic;
}

.story-content .tagline {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--maroon);
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--cream-2);
}

.story-content .tagline strong {
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
    color: var(--orange);
}

@media (max-width: 767px) {
    .story-content p {
        font-size: 1rem;
    }
    
    .story-content .highlight-text {
        font-size: 1.15rem;
    }
    
    .story-content .tagline {
        font-size: 1.1rem;
    }
    
    .story-content .tagline strong {
        font-size: 1.2rem;
    }
}

/* ═══ IMAGE COLLAGE LAYOUT ════ */
.image-collage-wrapper {
    position: relative;
    width: 100%;
    height:850px;
    padding: 20px;
}

.collage-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(110, 15, 36, 0.25);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(110, 15, 36, 0.35);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.collage-item:hover img {
    transform: scale(1.1);
}

/* Main large image (top) */
.collage-main {
    top: 0;
    left: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 410px;
    z-index: 3;
}

/* Bottom left image */
.collage-bottom-left {
    bottom: 0;
    left: 0;
    width: 48%;
    height: 410px;
    z-index: 2;
}

/* Bottom right image */
.collage-bottom-right {
    bottom: 0;
    right: 0;
    width: 48%;
    height: 410px;
    z-index: 2;
}

/* Collage badge on main image */
.collage-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-d));
    color: var(--maroon-deep);
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
    z-index: 5;
    animation: badgeFloat 3s ease-in-out infinite;
}

.collage-badge i {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.collage-badge span {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* Floating badge */
.floating-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--maroon);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--orange);
    box-shadow: 0 15px 40px rgba(63, 7, 20, 0.4);
    z-index: 6;
    animation: badgePulse 2.5s ease-in-out infinite;
}

.floating-badge i {
    font-size: 32px;
    color: var(--orange);
    margin-bottom: 4px;
}

.floating-badge span {
    font-family: var(--ff-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes badgePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .image-collage-wrapper {
        height: 550px;
        margin-top: 40px;
    }
    
    .collage-main {
        width: 85%;
        height: 280px;
    }
    
    .collage-bottom-left,
    .collage-bottom-right {
        width: 60%;
        height: 240px;
    }
    
    .floating-badge {
        width: 90px;
        height: 90px;
    }
    
    .floating-badge i {
        font-size: 26px;
    }
    
    .floating-badge span {
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .image-collage-wrapper {
        height: 650px;
    }
    
    .collage-main {
        width: 90%;
        height: 260px;
        top: 0;
    }
    
    .collage-bottom-left {
        bottom: 20px;
        left: 0;
        width: 48%;
        height: 200px;
    }
    
    .collage-bottom-right {
        bottom: 20px;
        right: 0;
        width: 48%;
        height: 200px;
    }
    
    .floating-badge {
        width: 80px;
        height: 80px;
        top: 45%;
    }
    
    .floating-badge i {
        font-size: 22px;
    }
    
    .floating-badge span {
        font-size: 9px;
    }
    
    .collage-badge {
        padding: 12px 16px;
        top: 15px;
        right: 15px;
    }
    
    .collage-badge i {
        font-size: 22px;
    }
    
    .collage-badge span {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .image-collage-wrapper {
        height: 450px;
        padding: 10px;
    }
    
    .collage-main {
        width: 100%;
        height: 240px;
    }
    
    .collage-bottom-left,
    .collage-bottom-right {
        width: 48%;
        height: 180px;
        bottom: 10px;
    }
    
    .floating-badge {
        width: 70px;
        height: 70px;
    }
    
    .floating-badge i {
        font-size: 20px;
    }
    
    .floating-badge span {
        font-size: 8px;
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 24px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
    z-index: 4;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.experience-badge .badge-num {
    display: block;
    font-family: var(--ff-head);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 6px;
}

.experience-badge .badge-text {
    font-family: var(--ff-head);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    background: var(--cream-2);
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.center .eyebrow {
    color: var(--maroon);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease);
    text-align: center;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--orange);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--maroon);
    transition: all 0.5s var(--ease);
}

.value-card:hover .value-icon {
    background: var(--maroon);
    color: var(--orange);
    transform: rotate(-10deg) scale(1.1);
}

.value-card h3 {
    font-family: var(--ff-head);
    font-size: 1.15rem;
    color: var(--maroon);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
    font-weight:400;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Heritage Stats Section */
.heritage-section {
    background: var(--maroon-deep);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.heritage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 166, 35, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.heritage-item {
    text-align: center;
    color: var(--white);
}

.heritage-num {
    font-family: var(--ff-head);
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
    display: inline-block;
}

.heritage-suffix {
    font-family: var(--ff-head);
    font-size: 4rem;
    color: var(--orange);
}

.heritage-item p {
    font-family: var(--ff-head);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 16px;
    color: rgba(255,255,255,0.8);
}

/* CTA Section */
.cta-section {
    background: var(--cream);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
    border-radius: var(--r);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-content .eyebrow {
    color: var(--orange);
}

.cta-content .sec-h {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 500px;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ═════ RESPONSIVE ═════ */
@media (max-width: 1199px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heritage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .heritage-num, .heritage-suffix {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-visual {
        order: -1;
    }
    
    .visual-collage {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .cta-content p {
        margin: 16px auto 0;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn-orange,
    .cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .heritage-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .heritage-num, .heritage-suffix {
        font-size: 2.5rem;
    }
    
    .visual-collage {
        height: 380px;
    }
    
    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 18px 22px;
    }
    
    .experience-badge .badge-num {
        font-size: 1.8rem;
    }
    
    .story-btns {
        flex-direction: column;
    }
    
    .story-btns .btn-orange,
    .story-btns .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .heritage-grid {
        grid-template-columns: 1fr;
    }
    
    .heritage-num, .heritage-suffix {
        font-size: 3rem;
    }
    
    .visual-collage .img-main,
    .visual-collage .img-float {
        border: 4px solid var(--cream);
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-content .sec-h {
        font-size: 1.8rem;
    }
}