/*  462phikeleniplumbers - About Page Styles */
:root {
    --navy: #0a2540;
    --navy-light: #143d5e;
    --navy-dark: #061a2e;
    --royal: #1e6fdb;
    --royal-light: #4a9eff;
    --royal-glow: rgba(30, 111, 219, 0.15);
    --white: #ffffff;
    --off-white: #f8fafc;
    --grey: #64748b;
    --grey-light: #94a3b8;
    --grey-dark: #334155;
    --orange: #f97316;
    --orange-light: #fb923c;
    --orange-glow: rgba(249, 115, 22, 0.15);
    --black: #0f172a;
    --silver: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--grey-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xs);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--royal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(30, 111, 219, 0.4);
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--silver);
}

.btn-secondary:hover {
    background: var(--off-white);
    border-color: var(--royal);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-text {
    background: none;
    color: var(--grey);
    padding: 8px 16px;
}

.btn-text:hover { color: var(--royal); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: var(--navy);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--royal);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.logo-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0;  /* remove letter-spacing */
}

.logo-sub {
    font-size: 20px;     /* same size as main */
    font-weight: 800;    /* same weight */
    color: var(--royal-light);
    letter-spacing: 0;   /* remove letter-spacing */
    text-transform: none; /* remove uppercase */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-links a.nav-cta {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.nav-links a.nav-cta:hover {
    background: var(--orange-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--royal) 100%);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="90" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
}

.page-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(10,37,64,0.3), rgba(10,37,64,0.8));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
}

.story-badge .number {
    font-size: 36px;
    font-weight: 800;
}

.story-badge .text {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

.story-content .section-tag {
    display: inline-block;
    color: var(--royal);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
}

.story-content .section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--royal);
    margin: 8px 0 0;
    border-radius: 2px;
}

.story-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--grey);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.story-stat {
    text-align: center;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

.story-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.story-stat .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--royal);
    display: block;
}

.story-stat .label {
    font-size: 13px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Values */
.mission-values {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

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

.section-header .section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--royal);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--grey);
    font-size: 17px;
}

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

.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--silver);
    transition: var(--transition-slow);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(30, 111, 219, 0.3);
}

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

.value-card p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
}

.certifications h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.certifications p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 40px;
}

.cert-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.cert-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.cert-item i {
    font-size: 28px;
    color: var(--royal-light);
}

.cert-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul { list-style: none; }

.footer-links li,
.footer-contact li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--royal-light); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-contact i { color: var(--royal); width: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image img { height: 350px; }
    .story-badge { right: 16px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .story-stats { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cert-grid { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
/* Logo Image Styles - replaces the icon while keeping text */
.logo-img-nav {
    height: 44px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-img-nav:hover {
    transform: scale(1.05);
}

.logo-img-footer {
    height: 40px;
    width: auto;
    max-width: 100px;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.logo-img-footer:hover {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img-nav {
        height: 36px;
    }
    .logo-img-footer {
        height: 32px;
    }
}