/* Page-specific styles for about-us.html (loaded after css/style.css) */

.page-hero {
            background: linear-gradient(115deg, rgba(10,43,94,0.92) 0%, rgba(10,43,94,0.84) 40%, rgba(10,43,94,0.60) 100%), url('../../images/about-hero-bg.jpg') center 30% / cover no-repeat;
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

.page-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { font-size: 45px; font-weight: 900; margin-bottom: 12px; }

.page-hero h1 span { color: var(--secondary); }

.page-hero p { font-size: 19px; color: rgba(255,255,255,0.8); max-width: 600px; }

.page-hero .breadcrumb { font-size: 16px; color: rgba(255,255,255,0.5); margin-top: 8px; }

.page-hero .breadcrumb a { color: var(--secondary); transition: var(--transition); }

.page-hero .breadcrumb a:hover { color: var(--white); }

.about-content {
            padding: 80px 0;
            background: var(--white);
        }

.about-text .label {
            display: inline-block;
            color: var(--secondary);
            font-size: 14.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }

.about-text h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

.about-text h2 span {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.about-text p {
            color: var(--gray-600);
            margin-bottom: 16px;
            font-size: 18px;
        }

.offer-section {
            padding: 70px 0 80px;
            background: var(--gray-50);
        }

.offer-intro {
            color: var(--gray-600);
            font-size: 18px;
            max-width: 720px;
            margin: 0 auto;
        }

.offer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

.offer-card {
            background: var(--white);
            padding: 32px 28px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }

.offer-card:hover {
            border-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

.offer-card .icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gradient-btn);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22.5px;
            margin-bottom: 16px;
        }

.offer-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

.offer-card p {
            font-size: 16.5px;
            color: var(--gray-500);
            line-height: 1.6;
        }

.offer-closing {
            text-align: center;
            max-width: 780px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid var(--gray-200);
            color: var(--gray-600);
            font-size: 18px;
            font-style: italic;
        }

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

.mission-vision {
            padding: 60px 0;
            background: var(--gray-50);
        }

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

.mv-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
        }

.mv-card:hover {
            border-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

.mv-card .icon {
            font-size: 40.5px;
            color: var(--secondary);
            margin-bottom: 12px;
        }

.mv-card h3 {
            font-size: 22.5px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

.mv-card p { color: var(--gray-600); font-size: 17px; }

.values-section {
            padding: 80px 0;
            background: var(--gray-50);
        }

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

.value-card {
            background: var(--white);
            padding: 28px;
            border-radius: var(--radius);
            border: 1px solid var(--gray-200);
            text-align: center;
            transition: var(--transition);
        }

.value-card:hover {
            border-color: var(--secondary);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

.value-card .icon {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 12px;
            display: block;
        }

.value-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

.value-card p { font-size: 16px; color: var(--gray-500); }

.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }

.cta-section h2 span { color: var(--secondary); }

.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 24px; }

.cta-section .btn-white {
            background: var(--white);
            color: var(--primary);
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

.cta-section .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 768px) {
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA SECTION CONTRAST FIX
   (cta-section p/.btn-white were styled for a dark background,
   but the section itself was left on the default white
   background, making the paragraph text unreadable)
   ============================================================ */
.cta-section { background: var(--primary); text-align: center; }
.cta-section h2 { color: var(--white); }
