/* Template: About Us Styles */

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.about-hero .collections-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about-hero .collections-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.about-hero .collections-breadcrumbs a:hover {
    opacity: 1;
}

.about-hero .collections-breadcrumbs span {
    opacity: 0.5;
}

.about-hero .desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Sections General */
section.about-section {
    padding: var(--section-padding);
}

.about-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--brand-navy);
    margin-bottom: 15px;
}

.about-section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Intro & Stats */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
}

.stat-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .number {
    display: block;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: #005696;
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro-feat-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-feat-img-container {
    flex: 1;
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.intro-feat-img-container::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90%;
    height: 90%;
    background: #fdf5ea; /* Light beige offset background */
    border-radius: 20px;
    z-index: 1;
}

.main-feat-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.img-badge-floating {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: #d4a05a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    z-index: 3;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(192, 149, 91, 0.3);
}

.intro-feat-cards {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.info-card:first-child {
    border-color: #d4a05a;
    box-shadow: 0 8px 24px rgba(192, 149, 91, 0.1);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: #d4a05a;
}

.info-card-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d4a05a;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-label .dot {
    width: 6px;
    height: 6px;
    background: #d4a05a;
    border-radius: 50%;
}

.info-card-value {
    color: #0f2a44;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
}

@media (max-width: 1024px) {
    .about-section {
        padding: 60px 0 !important;
    }
    .about-intro-feat-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    .intro-feat-img-container {
        width: 100%;
        max-width: 500px;
        padding-right: 0;
    }
    .intro-feat-cards {
        width: 100%;
    }
}

/* Timeline */
/* ==========================================================================
   Timeline: The Golden Journey (Senior UI/UX Redesign)
   ========================================================================== */
:root {
    --gold-primary: #CFAF5B;
    --gold-light: #F5E6A3;
    --gold-gradient: linear-gradient(135deg, #CFAF5B 0%, #F5E6A3 50%, #CFAF5B 100%);
    --luxury-shadow: 0 15px 45px rgba(207, 175, 91, 0.08);
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-timeline {
    background: #fff;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary) 10%, var(--gold-primary) 90%, transparent);
    z-index: 1;
    opacity: 0.4;
}

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

/* Horizontal Mirroring (Zig-Zag) */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--gold-primary);
    border-radius: 50%; /* Classic Jewel dot */
    transform: translate(-50%, -50%);
    z-index: 5;
    box-shadow: 0 0 15px rgba(207, 175, 91, 0.5);
    transition: var(--transition-smooth);
}

.timeline-item:hover::before {
    background: var(--gold-primary);
    box-shadow: 0 0 25px rgba(207, 175, 91, 0.8);
    transform: translate(-50%, -50%) scale(1.3);
}

/* Year Typography (Luxury) */
.timeline-year {
    width: 44%;
    font-family: var(--font-heading);
    font-size: 82px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    transition: var(--transition-smooth);
    user-select: none;
}

.timeline-item:nth-child(odd) .timeline-year { text-align: right; }
.timeline-item:nth-child(even) .timeline-year { text-align: left; }

.timeline-item:hover .timeline-year {
    opacity: 1;
    transform: translateY(-5px);
}

/* Card Styling (Minimalist) */
.timeline-card {
    width: 44%;
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--luxury-shadow);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(207, 175, 91, 0.05);
}

/* Gold Accent Line (Mirrored) */
.timeline-item:nth-child(odd) .timeline-card { border-right: 4px solid var(--gold-primary); }
.timeline-item:nth-child(even) .timeline-card { border-left: 4px solid var(--gold-primary); }

.timeline-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(207, 175, 91, 0.15);
    border-color: rgba(207, 175, 91, 0.3);
}

.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #0F2A44;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timeline-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-family: var(--font-body);
}

/* Responsiveness (Senior Standard) */
@media (max-width: 991px) {
    .timeline-line { left: 40px; transform: none; }
    .timeline-item, .timeline-item:nth-child(even) { 
        flex-direction: column; 
        align-items: flex-start;
        padding-left: 80px; 
        margin-bottom: 60px;
    }
    .timeline-item::before { left: 40px; top: 30px; transform: translateX(-50%); }
    .timeline-year { 
        width: 100%; 
        font-size: 54px; 
        text-align: left !important; 
        margin-bottom: 10px; 
    }
    .timeline-card { 
        width: 100%; 
        padding: 30px; 
        border-left: 4px solid var(--gold-primary) !important;
        border-right: none !important;
    }
}


/* Why Us: Luxury Grid */
.about-why-us {
    background-color: #fafafa;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-card {
    perspective: 1000px;
}

.why-card-inner {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.why-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
}

.why-icon-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CFAF5B 0%, #F5E6A3 100%);
    z-index: -1;
    opacity: 0.3;
}

.why-icon-box i {
    font-size: 38px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -2;
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--brand-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Hover Effects */
.why-card:hover .why-card-inner {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: rgba(207, 175, 91, 0.2);
}

.why-card:hover .why-icon-box {
    background: var(--gold-gradient);
    transform: rotateY(180deg);
}

.why-card:hover .why-icon-box i {
    -webkit-text-fill-color: #fff;
    background: none;
    transform: rotateY(-180deg);
}

.why-card:hover .icon-glow {
    opacity: 0.2;
}

/* Vision Mission: Refined for the new theme */
/* Vision & Mission: The Dual Pillars */
.about-vision-mission {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
}

.vision-mission-container {
    display: flex;
    min-height: 800px;
    width: 100%;
}

.vm-column {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.vm-bg-overlay {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s ease, filter 0.5s ease;
    z-index: 1;
}

.vm-column.vision .vm-bg-overlay { opacity: 0.7; }
.vm-column.mission .vm-bg-overlay { opacity: 0.3; }

.vm-watermark {
    position: absolute;
    font-size: 16vw;
    font-weight: 900;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    font-family: var(--font-heading);
    opacity: 0.08;
    transition: all 0.7s ease;
}

.vision .vm-watermark { color: #fff; top: 10%; right: -5%; }
.mission .vm-watermark { color: var(--brand-navy); bottom: 10%; left: -5%; }

.vm-content-glass {
    position: relative;
    z-index: 10;
    max-width: 520px;
    padding: 60px;
    border-radius: 24px;
    transition: all 0.5s ease;
}

.vision .vm-content-glass {
    background: rgba(15, 42, 68, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: #fff;
}

.mission .vm-content-glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(15, 42, 68, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    color: var(--brand-navy);
}

.vm-content-glass h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
}

.vm-line {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin-bottom: 30px;
}

.vm-content-glass p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .vm-content-glass {
        padding: 30px;
        max-width: 100%;
        width: 100%;
    }
    .vision-mission-container {
        padding: 0 20px;
    }
}

/* Hover States (The Expansion) */
@media (min-width: 1025px) {
    .vm-column:hover {
        flex: 1.6;
    }

    .vm-column:hover .vm-bg-overlay {
        transform: scale(1.1);
        filter: brightness(0.8);
    }

    .vm-column:hover .vm-watermark {
        opacity: 0.15;
        letter-spacing: 10px;
    }

    .vision:hover .vm-content-glass {
        background: rgba(15, 42, 68, 0.8);
        transform: translateX(20px);
    }

    .mission:hover .vm-content-glass {
        background: rgba(255, 255, 255, 0.9);
        transform: translateX(-20px);
    }
}

/* Workshop Slider: Boutique Gallery Style */
.about-workshop {
    background: #fdfaf7; /* Soft luxury beige background */
    padding: var(--section-padding);
    overflow: hidden;
}

.workshop-swiper {
    width: 100%;
    padding: 60px 0 100px;
    position: relative;
}

.workshop-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(199, 160, 100, 0.2); /* Subtle gold border */
}

.workshop-swiper .swiper-slide {
    width: 650px;
    height: 450px;
    transition: transform 0.8s ease;
}

.workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.workshop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 68, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active .workshop-overlay {
    opacity: 1;
}

.workshop-swiper .swiper-pagination-bullet {
    background: var(--brand-navy);
    opacity: 0.3;
}

.workshop-swiper .swiper-pagination-bullet-active {
    background: var(--gold-gradient);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Navigation Arrows */
.workshop-swiper .swiper-button-next,
.workshop-swiper .swiper-button-prev {
    color: var(--brand-navy);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.workshop-swiper .swiper-button-next::after,
.workshop-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.workshop-swiper .swiper-button-next:hover,
.workshop-swiper .swiper-button-prev:hover {
    background: var(--brand-navy);
    color: #fff;
    transform: scale(1.1);
}

.workshop-swiper .swiper-button-next { right: 5%; }
.workshop-swiper .swiper-button-prev { left: 5%; }

/* Responsive */
@media (max-width: 1024px) {
    .about-section { padding: 50px 0 !important; }
    .about-stats-grid, .why-us-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .vision-mission-container { flex-direction: column; height: auto; min-height: auto; width: 100%; overflow: hidden; }
    .vm-column { padding: 60px 20px; width: 100%; }
    .vm-watermark { font-size: 100px; opacity: 0.05; }
    .about-intro-features { flex-direction: column; grid-template-columns: 1fr; }
    .workshop-swiper .swiper-slide { width: 85%; height: 400px; }
    .workshop-swiper .swiper-button-next, .workshop-swiper .swiper-button-prev { display: none; }
}

@media (max-width: 768px) {
    .about-section { padding: 40px 0 !important; }
    .about-section-header h2 { font-size: 28px !important; }
    .about-hero h1 { font-size: 30px !important; }
    .about-hero .desc { font-size: 15px; }
    .timeline-line { left: 40px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; padding-left: 60px; margin-bottom: 50px; }
    .timeline-card { width: 100%; padding: 25px; }
    .timeline-year { font-size: 42px; width: 100%; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-card { padding: 20px 10px; }
    .stat-card .number { font-size: 24px; }
    .why-us-grid { grid-template-columns: 1fr; gap: 20px; }
    .workshop-swiper .swiper-slide { width: 100%; height: 300px; }
    .info-card { padding: 15px; }
    .info-card-value { font-size: 14px; }
    .vm-content-glass h3 { font-size: 32px; }
    .vm-content-glass p { font-size: 16px; }
}

@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: 1fr; }
    .about-section { padding: 30px 0 !important; }
    .timeline-item, .timeline-item:nth-child(even) { padding-left: 50px; }
    .timeline-line, .timeline-item::before { left: 25px; }
}
