/* About Page Styles - PEG Security */

/* ========================================
   VARIABLES & ANIMATIONS
========================================== */

:root {
    --gold: #D0B96D;
    --gold-light: #e6c980;
    --dark: #292B2B;
    --dark-light: #3a3c3c;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --grey: #666666;
    --light-grey: #999999;
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-glow: 0 0 40px rgba(208, 185, 109, 0.3);
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(208, 185, 109, 0.3); }
    50% { box-shadow: 0 0 40px rgba(208, 185, 109, 0.6); }
}

@keyframes expandWidth {
    to { width: 100%; }
}

/* Page Loading States */
body {
    opacity: 1;
    animation: fadeInUp 1s ease-out forwards;
}

/* ========================================
   ABOUT HERO SECTION
========================================== */

.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding: 80px 0 60px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(41, 43, 43, 0.85) 0%, 
        rgba(41, 43, 43, 0.7) 50%, 
        rgba(41, 43, 43, 0.6) 100%);
    z-index: 2;
}

.hero-cutout {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--gold);
    transition: var(--transition-smooth);
}

.hero-cutout:hover {
    transform: scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 5px rgba(208, 185, 109, 0.3);
}

.cutout-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.hero-cutout:hover .cutout-image {
    transform: scale(1.1);
}

.hero-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-content {
    text-align: left;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(208, 185, 109, 0.1);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(208, 185, 109, 0.3);
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 30px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.text-gold {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.text-gold::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: expandWidth 2s ease-out 1.5s forwards;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.7;
    margin: 0 0 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(208, 185, 109, 0.1);
    border-color: rgba(208, 185, 109, 0.4);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   COMPANY OVERVIEW SECTION
========================================== */

.company-overview {
    background: var(--white);
    padding: 120px 0;
    position: relative;
}

.company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(208, 185, 109, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    background: rgba(208, 185, 109, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(208, 185, 109, 0.2);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 30px;
    line-height: 1.2;
}

.highlight {
    color: var(--gold);
}

.lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.company-facts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: var(--transition-smooth);
}

.fact-item:hover {
    transform: translateX(5px);
    background: rgba(208, 185, 109, 0.05);
}

.fact-item i {
    color: var(--gold);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.fact-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 5px;
}

.fact-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

.overview-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(41, 43, 43, 0.15);
    transition: var(--transition-smooth);
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(41, 43, 43, 0.2);
}

.overview-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.established-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.established-badge .year {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.established-badge .text {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   MISSION & VALUES SECTION
========================================== */

.mission-values {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 120px 0;
}

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

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(41, 43, 43, 0.08);
    text-align: center;
    border: 1px solid rgba(208, 185, 109, 0.1);
    transition: var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(41, 43, 43, 0.12);
    border-color: rgba(208, 185, 109, 0.3);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(208, 185, 109, 0.3);
}

.mission-icon i {
    font-size: 32px;
    color: var(--white);
}

.mission-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 20px;
}

.mission-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(41, 43, 43, 0.06);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(208, 185, 109, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(41, 43, 43, 0.1);
    border-color: rgba(208, 185, 109, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(208, 185, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 24px;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 15px;
}

.value-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CERTIFICATIONS SECTION
========================================== */

.certifications {
    background: var(--dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(208, 185, 109, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(208, 185, 109, 0.08) 2px, transparent 2px);
    background-size: 200px 200px, 300px 300px;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.certifications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cert-text .section-tag {
    background: rgba(208, 185, 109, 0.2);
    border-color: rgba(208, 185, 109, 0.4);
}

.cert-text .section-title {
    color: var(--white);
}

.cert-text .lead {
    color: var(--white);
    opacity: 0.9;
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(208, 185, 109, 0.2);
    transition: var(--transition-smooth);
}

.compliance-item:hover {
    background: rgba(208, 185, 109, 0.1);
    border-color: rgba(208, 185, 109, 0.4);
    transform: translateX(5px);
}

.compliance-item i {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.compliance-item span {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.compliance-item strong {
    color: var(--gold);
}

.cert-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(208, 185, 109, 0.1), transparent);
    transition: left 0.6s ease;
}

.cert-badge:hover::before {
    left: 100%;
}

.cert-badge:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(208, 185, 109, 0.5);
    background: rgba(208, 185, 109, 0.1);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.4);
}

.badge-icon i {
    font-size: 24px;
    color: var(--white);
}

.badge-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
}

.badge-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   TECHNOLOGY INNOVATION SECTION
========================================== */

.technology-innovation {
    background: var(--white);
    padding: 120px 0;
}

.tech-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}

.tech-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(41, 43, 43, 0.15);
}

.tech-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.tech-visual:hover .tech-image {
    transform: scale(1.05);
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(41, 43, 43, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.tech-badge {
    background: rgba(208, 185, 109, 0.9);
    backdrop-filter: blur(10px);
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.tech-badge i {
    font-size: 20px;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: var(--transition-smooth);
}

.tech-feature:hover {
    transform: translateX(10px);
    background: rgba(208, 185, 109, 0.05);
    box-shadow: 0 10px 30px rgba(208, 185, 109, 0.1);
}

.tech-feature i {
    color: var(--gold);
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.tech-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 10px;
}

.tech-feature p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   ABOUT CONTACT SECTION
========================================== */

.about-contact {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(41, 43, 43, 0.06);
    border: 1px solid rgba(208, 185, 109, 0.1);
    transition: var(--transition-smooth);
}

.contact-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 43, 43, 0.1);
    border-color: rgba(208, 185, 109, 0.3);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(208, 185, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: var(--gold);
    font-size: 20px;
}

.detail-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px;
}

.detail-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

.contact-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(208, 185, 109, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-visual {
    position: relative;
}

.professional-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(41, 43, 43, 0.15);
}

.contact-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.professional-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.professional-badge .availability {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.professional-badge .service {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   RESPONSIVE DESIGN
========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .overview-content,
    .tech-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .certifications-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .hero-layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .hero-cutout {
        height: 380px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .about-hero {
        min-height: calc(100vh - 70px);
        padding: 40px 0;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-cutout {
        width: 100%;
        max-width: 200px;
        height: 250px;
        margin: 0 auto;
        order: 1;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    
    .stat-card {
        padding: 15px 8px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .company-overview,
    .mission-values,
    .certifications,
    .technology-innovation,
    .about-contact {
        padding: 80px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cert-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-features {
        gap: 20px;
    }
    
    .tech-feature {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .about-hero {
        min-height: calc(100vh - 60px);
        padding: 30px 0;
    }
    
    .hero-cutout {
        max-width: 180px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 15px;
    }
    
    .stat-card {
        padding: 10px 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        text-align: right;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .overview-image,
    .tech-image,
    .contact-image {
        height: 250px;
    }
    
    .mission-card,
    .value-card,
    .cert-badge {
        padding: 20px 15px;
    }
    
    .fact-item,
    .compliance-item,
    .contact-detail {
        padding: 15px;
    }
    
    .company-overview,
    .mission-values,
    .certifications,
    .technology-innovation,
    .about-contact,
    .company-video {
        padding: 60px 0;
    }
}

/* =====================
   Company Video Section
   ===================== */
.company-video {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
}

.video-showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.video-info {
    text-align: center;
}

.video-info .section-tag {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.video-info .section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--white);
}

.video-info .section-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-frame {
    width: 100%;
    max-width: 700px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--black);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .company-video {
        padding: 60px 0;
    }
    
    .video-showcase-content {
        gap: 40px;
    }
    
    .video-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .video-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .video-frame {
        padding: 0 20px;
    }
}