/* 
========================================
DESIGN SYSTEM & VARIABLES
========================================
*/
:root {
    --primary-blue: #4A86C5;
    --dark-blue: #0A1A8F;
    --light-gray: #D9D9D9;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-body: #4B5563;
    --text-light: #9CA3AF;
    --bg-light: #F8FAFC;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 12px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--dark-blue);
    /* Match footer for seamless bottom */
    overflow-x: hidden;
}

/* All main sections get white/light bg to sit on top of dark body */
main,
section {
    background-color: var(--white);
}

section.bg-light {
    background-color: var(--bg-light);
}

/* 
========================================
TYPOGRAPHY
========================================
*/
h1,
h2,
h3,
h4,
h5 {
    color: var(--dark-blue);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(10, 26, 143, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 26, 143, 0.4);
}

/* 
========================================
HEADER & NAVIGATION
========================================
*/
.header {
    width: 100%;
    background: var(--white);
    z-index: 9999;
    position: relative;
    transition: var(--transition);
}

.top-row {
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-blue);
    border: 1px solid #e2e8f0;
}

.lang-switch {
    display: flex;
    background: #edf2f7;
    padding: 4px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.lang-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    background: transparent;
}

.lang-btn.active {
    background: var(--dark-blue);
    color: white;
    box-shadow: var(--shadow-sm);
}

.lang-btn span.flag {
    font-size: 1.4rem;
    line-height: 1;
}

/* Menu Row */
.menu-row {
    background: var(--white);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
    margin-left: 20px;
}

.search-box form {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 30px;
    padding: 2px 5px 2px 15px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.search-box form:focus-within {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(74, 134, 197, 0.1);
}

.search-input {
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    width: 150px;
    transition: var(--transition);
}

.search-input:focus {
    width: 220px;
}

.search-btn {
    background: var(--dark-blue);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.nav-list {
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 24px;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Dropdowns */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    padding: 15px 0;
    border-top: 4px solid var(--primary-blue);
    z-index: 10000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: #f8fafc;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    padding-left: 30px;
}

/* Sticky State */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-md);
    z-index: 9999;
}

.header.sticky .top-row {
    padding: 10px 0;
    border-bottom: none;
}

.header.sticky .logo-img {
    height: 50px;
}

/* 
========================================
HERO CAROUSEL
========================================
*/
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #000;
}

.carousel {
    height: 100%;
    width: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
}

.carousel-item.active {
    opacity: 1;
    z-index: 10;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s linear;
}

.carousel-item.active .carousel-bg {
    transform: scale(1);
}

.carousel-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 26, 143, 0.8), rgba(74, 134, 197, 0.4));
}

.carousel-content {
    position: relative;
    z-index: 20;
    max-width: 100%;
    padding: 0;
    transform: translateY(40px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-item.active .carousel-content {
    transform: translateY(0);
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    /* Reduced from 4.5rem */
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 750px;
    margin-left: 0;
    /* Changed from auto */
    margin-right: auto;
    line-height: 1.6;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 40;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.carousel-control:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 30;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* 
========================================
WELCOME MESSAGE (DIRECTOR)
========================================
*/
.welcome-section {
    background: #fff;
    position: relative;
}

.welcome-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 50px;
    border-left: 10px solid var(--primary-blue);
}

.director-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 500px;
}

.director-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speech-content blockquote {
    font-size: 1.35rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    padding-left: 40px;
}

.speech-content blockquote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 5rem;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: serif;
}

.director-meta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.director-meta .divider {
    width: 50px;
    height: 4px;
    background: var(--primary-blue);
}

/* Read More Toggle */
.message-text.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.message-text.expanded {
    max-height: none;
    mask-image: none;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    font-weight: 700;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* 
========================================
ABOUT & PRINCIPLES
========================================
*/
.about-bg {
    background: var(--bg-light);
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(74, 134, 197, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.card:hover .icon-circle {
    background: var(--primary-blue);
    color: white;
    transform: rotate(10deg);
}

/* 
========================================
HISTORY TIMELINE
========================================
*/
.timeline-container {
    position: relative;
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.timeline-content {
    width: 42%;
    padding: 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #f1f5f9;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 40px;
    width: 30px;
    height: 2px;
    background: #e2e8f0;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -30px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--dark-blue);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    box-shadow: var(--shadow-sm);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border: 3px solid white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(74, 134, 197, 0.1);
}

/* 
========================================
SERVICES & COLLECTIONS
========================================
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-image-box {
    height: 240px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image-box svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

.service-body {
    padding: 40px;
}

.service-body h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Collections */
.collection-banner {
    background: linear-gradient(135deg, var(--dark-blue), #1a365d);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    color: white;
    box-shadow: var(--shadow-lg);
}

.collection-info {
    padding: 80px;
    flex: 1;
}

.collection-visual {
    width: 40%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.collection-visual svg {
    width: 200px;
    height: 200px;
    opacity: 0.2;
    transform: rotate(-15deg);
}

/* 
========================================
NEWS & EVENTS
========================================
*/
.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
}

.news-img {
    height: 220px;
    background: #f8fafc;
}

.news-content {
    padding: 30px;
}

.news-date {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

/* 
========================================
CONTACT & FORM
========================================
*/
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-details {
    background: var(--dark-blue);
    color: white;
    padding: 60px;
}

.contact-details h3 {
    color: white;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form-side {
    padding: 60px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-blue);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: #fff;
}

/* 
========================================
FOOTER
========================================
*/
.footer {
    background: var(--dark-blue);
    padding: 80px 0 40px;
    color: white;
    width: 100%;
    margin-bottom: 0;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* Full width footer helper */
footer.footer {
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.social-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.6;
}

/* 
========================================
ANIMATIONS & UTILITIES
========================================
*/
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Bilingual Toggle Visibility */
:not(body).lang-en,
:not(body).lang-so {
    display: none;
}

body.lang-en :not(body).lang-en {
    display: inline;
}

body.lang-so :not(body).lang-so {
    display: inline;
}

/* Special block display for translations */
body.lang-en blockquote.lang-en,
body.lang-en div.lang-en,
body.lang-en p.lang-en,
body.lang-en h1.lang-en,
body.lang-en h2.lang-en,
body.lang-en h3.lang-en,
body.lang-en h4.lang-en {
    display: block;
}

body.lang-so blockquote.lang-so,
body.lang-so div.lang-so,
body.lang-so p.lang-so,
body.lang-so h1.lang-so,
body.lang-so h2.lang-so,
body.lang-so h3.lang-so,
body.lang-so h4.lang-so {
    display: block;
}

/* 
========================================
MOBILE RESPONSIVE
========================================
*/
.mobile-menu-btn {
    cursor: pointer;
    padding: 10px;
    color: var(--dark-blue);
    display: none;
}

.desktop-hide {
    display: none;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .top-right {
        display: none !important;
    }

    .top-row {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 15px 0 !important;
    }

    .desktop-hide {
        display: block !important;
    }

    .menu-row {
        height: 0;
        overflow: visible;
        padding: 0;
        border: none;
    }

    .nav-container {
        padding: 0;
    }

    .logo-img {
        height: 50px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-link {
        padding: 15px 24px;
        border-bottom: 1px solid #f3f4f6;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f8fafc;
        box-shadow: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .welcome-card {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-dot {
        left: 40px;
    }

    .timeline-year {
        left: 80px !important;
        top: -40px;
        right: auto !important;
    }

    .collection-banner {
        flex-direction: column;
    }

    .collection-visual {
        width: 100%;
        height: 200px;
    }

    .collection-info {
        padding: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Page Specific Hero */
.page-hero {
    height: 400px;
    background: linear-gradient(rgba(10, 26, 143, 0.8), rgba(10, 26, 143, 0.8)), url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero.mission {
    background-image: linear-gradient(rgba(10, 26, 143, 0.8), rgba(10, 26, 143, 0.8)), url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&q=80&w=1920');
}

.page-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

/* Content Sections */
.history-section {
    padding: 100px 0;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

.history-block {
    margin-bottom: 80px;
}

.history-block h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--primary-blue);
}

.history-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
    text-align: justify;
}

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 8px solid var(--primary-blue);
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* Principle Cards */
.principle-card {
    padding: 40px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.principle-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.principle-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}