/* ============================================
   1. ABOUT HERO SECTION
   ============================================ */

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.about-brand-mark {
    text-align: center;
    margin-bottom: 20px;
}

.brand-subtext {
    font-size: 50px;
    letter-spacing: 1px;
    color: #d4af37;
    font-weight: 300;
    display: inline-block;
    position: relative;
}

.brand-subtext::before,
.brand-subtext::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #d4af37;
}

.brand-subtext::before {
    left: -60px;
}

.brand-subtext::after {
    right: -60px;
}

.about-hero .title-page-name {
    font-size: 120px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.about-hero .des-page {
    font-size: 24px;
    line-height: 1.6;
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 85px;
}

.hero-stats .stat-item {
    text-align: center;
    position: relative;
}

.hero-stats .stat-item::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
}

.hero-stats .stat-item:last-child::after {
    display: none;
}

.hero-stats h3 {
    font-size: 60px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-stats p {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ============================================
   2. CORE IDENTITY SECTION
   ============================================ */

.core-identity {
    padding: 120px 0;
    background: #0c0c0c;
}

.identity-content {
    margin-top: 60px;
}

.identity-card {
    padding: 60px 40px;
    background: linear-gradient(135deg, #141517 0%, #1a1a1d 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.6, 0.05, 0.4, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
}

.identity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 1;
}

.identity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.identity-card:hover::before {
    transform: translateX(100%);
}

.identity-icon {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.identity-icon svg {
    transition: transform 0.4s cubic-bezier(0.6, 0.05, 0.4, 1);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.identity-card:hover .identity-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.identity-card h3 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.identity-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ============================================
   3. BRAND STORY SECTION
   ============================================ */

.brand-story {
    padding: 120px 0;
    background: linear-gradient(180deg, #0c0c0c 0%, #141517 100%);
}

.story-content {
    margin-top: 60px;
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.story-block {
    padding: 60px 50px;
    background: rgba(20, 21, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
    background-size: cover;
    background-position: center;
}

.story-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37, transparent, #d4af37);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.story-block:hover::before {
    opacity: 0.2;
}

.story-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4af37;
    padding: 8px 20px;
    border: 1px solid #d4af37;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.story-block h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.philosophy-block {
    padding: 80px 60px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    margin-top: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.philosophy-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 12, 12, 0.85);
    border-radius: 20px;
    z-index: 0;
}

.philosophy-block > * {
    position: relative;
    z-index: 1;
}

.philosophy-block h3 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.philosophy-block .lead {
    font-size: 20px;
    line-height: 1.8;
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 50px;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 100px;
}

.pillar:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.pillar h4 {
    font-size: 28px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 15px;
}

.pillar p {
    font-size: 15px;
    line-height: 1.7;
    color: #b3b3b3;
    margin: 0;
}
.pillar-image{
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-top: -150px;
}
/* ============================================
   4. DESIGN & INNOVATION SECTION
   ============================================ */

.design-innovation {
    padding: 120px 0;
    background: #0c0c0c;
    position: relative;
}

.innovation-intro {
    margin: 60px 0 80px;
}

.lead-text {
    font-size: 26px;
    line-height: 1.7;
    color: #ffffff;
    text-align: center;
    font-weight: 300;
}

.innovation-cards {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
    /* gap: 30px; */
    margin-bottom: 60px;
}

.innovation-card {
    padding: 50px 40px;
    background: linear-gradient(135deg, #141517 0%, #1a1a1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.6, 0.05, 0.4, 1);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);
    height: 100%;
}

.innovation-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.6), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.1);
}

.innovation-card:hover::after {
    opacity: 1;
}

.innovation-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(212, 175, 55, 1);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Baskervville', serif;
}

.innovation-card h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.innovation-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b3b3b3;
    margin: 0;
    position: relative;
    z-index: 1;
}

.innovation-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
    /* gap: 15px; */
}

.feature-item svg {
    transition: transform 0.4s ease;
}

.feature-item:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.feature-item span {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    max-width: 150px;
}

/* ============================================
   5. GLOBAL PRESENCE SECTION
   ============================================ */

.global-presence {
    padding: 120px 0;
    background: linear-gradient(180deg, #141517 0%, #0c0c0c 100%);
}

.global-content {
    padding: 60px 0;
}

.global-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.global-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 50px;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.global-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.global-stat:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.global-stat h3 {
    font-size: 56px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1;
}

.global-stat span {
    font-size: 14px;
    color: #b3b3b3;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.world-map {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.world-map .pulse {
    animation: pulse 2s ease-in-out infinite;
}

.world-map .pulse:nth-child(2) {
    animation-delay: 0.4s;
}

.world-map .pulse:nth-child(3) {
    animation-delay: 0.8s;
}

.world-map .pulse:nth-child(4) {
    animation-delay: 1.2s;
}

.world-map .pulse:nth-child(5) {
    animation-delay: 1.6s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.5);
    }
}

/* ============================================
   6. BRAND VALUES SECTION
   ============================================ */

.brand-values {
    padding: 120px 0;
    background: #0c0c0c;
}

.brand-values .intro-text {
    font-size: 24px;
    line-height: 1.7;
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    padding: 50px 40px;
    background: linear-gradient(135deg, #141517 0%, #1a1a1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.6, 0.05, 0.4, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: width 0.6s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.value-item:hover::before {
    width: 100%;
}

.value-icon {
    margin-bottom: 30px;
    display: inline-block;
}

.value-icon svg {
    transition: all 0.5s ease;
}

.value-item:hover .value-icon svg {
    transform: scale(1.15) rotate(10deg);
}

.value-item h3 {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #b3b3b3;
    margin: 0;
}

/* ============================================
   7. CERTIFICATIONS SECTION
   ============================================ */

.certifications-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0c0c0c 0%, #141517 100%);
}

.section-intro {
    font-size: 18px;
    color: #b3b3b3;
    text-align: center;
    margin-top: 10px;
}

.certifications-slider-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 60px;
}

.certifications-swiper {
    overflow: hidden;
    padding: 40px 0;
    height: 400px;
    margin-top: 60px;
}

.cert-card {
    padding: 50px 30px;
    background: linear-gradient(135deg, #141517 0%, #1a1a1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.6, 0.05, 0.4, 1);
    height: 100%;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.cert-icon {
    margin-bottom: 25px;
    display: inline-block;
}

.cert-icon svg {
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.cert-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 14px;
    color: #b3b3b3;
    margin: 0;
}

.cert-next,
.cert-prev {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.4s ease;
}

.cert-next:hover,
.cert-prev:hover {
    background: #d4af37;
    color: #0c0c0c;
    transform: scale(1.1);
}

.certifications-swiper .swiper-pagination-bullet {
    background: rgba(212, 175, 55, 0.3);
    opacity: 1;
}

.certifications-swiper .swiper-pagination-bullet-active {
    background: #d4af37;
}

/* ============================================
   8. WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    padding: 120px 0;
    background: #0c0c0c;
}

.why-choose-us .intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 80px;
}

.choose-us-grid {
    /* gap: 40px; */
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
    margin-top: 60px;
}

.choose-card {
    padding: 50px 40px;
    background: linear-gradient(135deg, #141517 0%, #1a1a1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.6, 0.05, 0.4, 1);
    overflow: hidden;
    height: 100%;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37, transparent, #d4af37);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
}

.choose-card:hover::before {
    opacity: 0.3;
}

.choose-number {
    font-size: 100px;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.5);
    line-height: 1;
    margin-bottom: -10px;
    font-family: 'Baskervville', serif;
}

.choose-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.choose-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 25px;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.choose-list li {
    font-size: 14px;
    color: #b3b3b3;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.choose-list li:last-child {
    border-bottom: none;
}

.choose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
}

/* ============================================
   9. FUTURE VISION SECTION
   ============================================ */

.future-vision {
    padding: 120px 0;
    background: linear-gradient(180deg, #141517 0%, #0c0c0c 100%);
    position: relative;
}

.vision-content {
    padding: 40px 0;
}

.vision-content h2 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.vision-content .lead {
    font-size: 20px;
    line-height: 1.8;
    color: #b3b3b3;
    margin-bottom: 50px;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-point {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.vision-point:hover {
    background: rgba(212, 175, 55, 0.03);
    transform: translateX(10px);
}

.vision-icon {
    flex-shrink: 0;
}

.vision-icon svg {
    transition: transform 0.4s ease;
}

.vision-point:hover .vision-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.vision-text h4 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.vision-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #b3b3b3;
    margin: 0;
}

.vision-stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
}

.vision-stat-card {
    padding: 35px 40px;
    background: linear-gradient(135deg, #141517 0%, #1a1a1d 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.vision-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.vision-stat-card h3 {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1;
}

.vision-stat-card p {
    font-size: 14px;
    color: #b3b3b3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.vision-commitment {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    margin-top: 20px;
}

.vision-commitment h4 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.vision-commitment p {
    font-size: 16px;
    line-height: 1.8;
    color: #b3b3b3;
    font-style: italic;
    margin-bottom: 15px;
}

.commitment-author {
    font-size: 14px;
    color: #d4af37;
    font-weight: 500;
}

/* ============================================
   10. RESPONSIVE DESIGN
   ============================================ */

/* Extra Large Devices (1200px and up) */
@media (max-width: 1199.98px) {
    .about-hero .title-page-name {
        font-size: 100px;
    }
    
    .hero-stats {
        gap: 60px;
    }
    
    .hero-stats h3 {
        font-size: 50px;
    }
}

/* Large Devices (992px and up) */
@media (max-width: 991.98px) {
    .about-hero .title-page-name {
        font-size: 80px;
    }
    
    .about-hero .des-page {
        font-size: 20px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-stats h3 {
        font-size: 40px;
    }
    
    .philosophy-pillars {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .global-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (768px and up) */
@media (max-width: 767.98px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero .title-page-name {
        font-size: 60px;
    }
    
    .brand-subtext::before,
    .brand-subtext::after {
        width: 30px;
    }
    
    .brand-subtext::before {
        left: -40px;
    }
    
    .brand-subtext::after {
        right: -40px;
    }
    
    .about-hero .des-page {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-stats .stat-item::after {
        display: none;
    }
    
    .core-identity,
    .brand-story,
    .design-innovation,
    .global-presence,
    .brand-values,
    .certifications-section,
    .why-choose-us,
    .future-vision {
        padding: 80px 0;
    }
    
    .identity-card,
    .story-block,
    .innovation-card,
    .value-item,
    .cert-card,
    .choose-card {
        padding: 40px 30px;
    }
    
    .philosophy-block {
        padding: 50px 30px;
    }
    
    .story-block h2 {
        font-size: 36px;
    }
    
    .global-content h2 {
        font-size: 42px;
    }
    
    .vision-content h2 {
        font-size: 42px;
    }
    
    .innovation-features {
        flex-direction: column;
        gap: 30px;
        --bs-gutter-x: 30px;
        --bs-gutter-y: 30px;
    }
    
    .vision-point {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-slider-wrapper {
        padding: 0 20px;
    }
}

/* Small Devices (576px and up) */
@media (max-width: 575.98px) {
    .about-hero .title-page-name {
        font-size: 48px;
    }
    
    .brand-subtext {
        font-size: 11px;
        letter-spacing: 4px;
    }
    
    .brand-subtext::before,
    .brand-subtext::after {
        width: 20px;
    }
    
    .brand-subtext::before {
        left: -30px;
    }
    
    .brand-subtext::after {
        right: -30px;
    }
    
    .about-hero .des-page {
        font-size: 16px;
    }
    
    .hero-stats h3 {
        font-size: 36px;
    }
    
    .hero-stats p {
        font-size: 12px;
    }
    
    .identity-card h3,
    .story-block h2,
    .global-content h2,
    .vision-content h2 {
        font-size: 28px;
    }
    
    .innovation-card h4,
    .choose-card h3 {
        font-size: 24px;
    }
    
    .philosophy-block h3 {
        font-size: 30px;
    }
    
    .lead-text,
    .philosophy-block .lead,
    .vision-content .lead {
        font-size: 18px;
    }
    
    .innovation-number,
    .choose-number {
        font-size: 70px;
    }
    
    .certifications-slider-wrapper {
        padding: 0 10px;
    }
    
    .cert-next,
    .cert-prev {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   11. ANIMATION CLASSES
   ============================================ */

/* Fade in from bottom */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Fade in from left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

/* Fade in from right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Scale in */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Rotate in */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

/* ============================================
   12. UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: #d4af37;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
}

.border-gold {
    border-color: rgba(212, 175, 55, 0.3);
}

.shadow-gold {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* Print Styles */
@media print {
    .about-hero svg,
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}
