/* ============================================
   PREMIUM ABOUT PAGE STYLES
   Complete redesign to match home page aesthetic
============================================ */

/* ============================================
   ABOUT PAGE HERO
============================================ */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(248, 250, 252, 0.05), transparent);
    pointer-events: none;
}

/* Animated background shapes */
.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: heroFloat 25s infinite alternate ease-in-out;
}

.about-hero-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 165, 116, 0.25);
    top: -150px;
    right: -100px;
}

.about-hero-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(30, 58, 138, 0.3);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

.about-hero-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(212, 165, 116, 0.15);
    top: 50%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes heroFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 165, 116, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.about-hero-badge i {
    color: #d4a574;
    font-size: 16px;
}

.about-hero-badge span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.about-hero h1 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.about-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.about-hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.4);
    color: #0f172a;
}

.about-hero-cta i {
    transition: transform 0.3s ease;
}

.about-hero-cta:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT INTRO SECTION
============================================ */
.about-intro {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content {
    position: relative;
}

.about-intro-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(212, 165, 116, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.about-intro-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-intro-content h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-intro-content p.lead-text {
    font-size: 19px;
    color: #0f172a;
    font-weight: 500;
}

.about-intro-content p strong {
    color: #0f172a;
    font-weight: 700;
}

/* Quality Pillars */
.quality-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.pillar-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
}

.pillar-icon i {
    font-size: 22px;
    color: #d4a574;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon i {
    color: white;
}

.pillar-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Intro Visual */
.about-intro-visual {
    position: relative;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.intro-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.intro-image-wrapper:hover img {
    transform: scale(1.05);
}

.intro-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating Stats */
.intro-floating-stat {
    position: absolute;
    background: white;
    padding: 22px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 10;
    animation: statFloat 4s infinite alternate ease-in-out;
}

.intro-floating-stat.stat-top {
    top: 30px;
    right: -30px;
}

.intro-floating-stat.stat-bottom {
    bottom: 50px;
    left: -30px;
    animation-delay: -2s;
}

@keyframes statFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.intro-stat-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.intro-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PROCESS SECTION
============================================ */
.about-process {
    padding: 120px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.about-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.process-pretitle::before,
.process-pretitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a574);
}

.process-pretitle::after {
    background: linear-gradient(to left, transparent, #d4a574);
}

.process-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.process-header h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(212, 165, 116, 0.3);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: rgba(212, 165, 116, 0.2);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 36px;
    color: #d4a574;
}

.process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.process-step p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

/* Connection line between steps */
.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, rgba(212, 165, 116, 0.5), transparent);
}

.process-step:last-child::after {
    display: none;
}

/* ============================================
   RECOGNITION STATS SECTION
============================================ */
.about-recognition {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.recognition-header {
    text-align: center;
    margin-bottom: 70px;
}

.recognition-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(212, 165, 116, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
}

.recognition-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.recognition-header h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recognition-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Grid */
.recognition-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recognition-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.recognition-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recognition-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
}

.recognition-stat-card:hover::before {
    opacity: 1;
}

.stat-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.recognition-stat-card:hover .stat-card-icon {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    transform: scale(1.1) rotate(5deg);
}

.stat-card-icon i {
    font-size: 30px;
    color: #d4a574;
    transition: all 0.3s ease;
}

.recognition-stat-card:hover .stat-card-icon i {
    color: white;
}

.stat-card-value {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.stat-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* ============================================
   VALUES SECTION
============================================ */
.about-values {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.values-content {
    color: white;
}

.values-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.values-pretitle::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #d4a574;
}

.values-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.values-content h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-content>p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Value Items */
.value-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: rgba(212, 165, 116, 0.2);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
}

.value-icon i {
    font-size: 24px;
    color: #d4a574;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: #0f172a;
}

.value-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.value-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Values Visual */
.values-visual {
    position: relative;
}

.values-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.values-image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.values-image-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.values-image-card:hover img {
    transform: scale(1.05);
}

.values-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 165, 116, 0.4);
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.values-badge-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.values-badge-icon i {
    font-size: 24px;
    color: #0f172a;
}

.values-badge-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.values-badge-text span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT CTA SECTION
============================================ */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.about-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.about-cta-content h2 span {
    background: linear-gradient(135deg, #d4a574 0%, #f3d2b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(212, 165, 116, 0.4);
    color: #0f172a;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 38px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 1200px) {
    .about-hero h1 {
        font-size: 52px;
    }

    .about-intro-content h2,
    .process-header h2,
    .recognition-header h2,
    .values-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 100px 0 80px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-intro-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .values-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-intro-content,
    .values-content {
        text-align: center;
    }

    .about-intro-pretitle,
    .values-pretitle {
        justify-content: center;
    }

    .quality-pillars {
        max-width: 500px;
        margin: 35px auto 0;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .recognition-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-floating-stat.stat-top {
        right: 10px;
    }

    .intro-floating-stat.stat-bottom {
        left: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-hero-cta {
        padding: 15px 30px;
        font-size: 15px;
    }

    .about-intro,
    .about-process,
    .about-recognition,
    .about-values {
        padding: 70px 0;
    }

    .about-intro-content h2,
    .process-header h2,
    .recognition-header h2,
    .values-content h2,
    .about-cta-content h2 {
        font-size: 28px;
    }

    .quality-pillars {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-step {
        padding: 50px 25px 30px;
    }

    .recognition-stats {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .value-items {
        gap: 15px;
    }

    .value-item {
        padding: 20px;
    }

    .values-image-card img {
        height: 350px;
    }

    .values-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 20px;
        gap: 15px;
    }

    .about-cta-card {
        padding: 50px 25px;
        border-radius: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }

    .intro-image-wrapper img {
        height: 350px;
    }

    .intro-floating-stat {
        padding: 15px 20px;
    }

    .intro-stat-value {
        font-size: 24px;
    }

    .intro-stat-label {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .about-hero-badge {
        padding: 10px 18px;
    }

    .about-hero-badge span {
        font-size: 11px;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .pillar-card {
        padding: 20px;
    }

    .stat-card-value {
        font-size: 32px;
    }

    .value-icon {
        width: 45px;
        height: 45px;
    }

    .value-icon i {
        font-size: 20px;
    }
}