/* Hero Section (Small for Internal Pages) */
.page-header {
    padding: 100px 0 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

/* Button Styles */
.btn-black {
    background: var(--primary-black) !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-black:hover {
    background: #333 !important;
}

/* Utility */
.section-padding {
    padding: 80px 0;
}

.label-top {
    font-weight: 700;
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* Stats Styling */
.stats-wrap {
    background: var(--light-grey);
    padding: 60px 0;
}

.stat-item h2 {
    font-size: 45px;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 700;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Section */
.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.story-img:hover {
    filter: grayscale(0%);
}

/* Vision Cards */
.vision-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    background: #fff;
    height: 100%;
}

.vision-card i {
    font-size: 30px;
    margin-bottom: 20px;
}

/* Team Section */
.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #eee;
    margin-bottom: 20px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.team-member:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Contact Section Reuse */
.contact-section {
    background: var(--light-grey);
    padding: 80px 0;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 15px;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: none;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .page-header {
        padding: 60px 0;
        text-align: center;
    }

    .section-padding {
        padding: 50px 0;
    }
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-black);
    text-transform: uppercase;
}


/* Mobile Typography & Spacing */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        text-align: center;
    }

    .hero-section {
        padding: 40px 0 !important;
        text-align: center;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .stat-item h2 {
        font-size: 32px !important;
    }

    .contact-section {
        padding: 40px 0 !important;
    }

    .contact-section .bg-white {
        padding: 30px !important;
    }
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: #fff;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 20px;
}

/* Button Fixes */
.btn-black {
    background: var(--primary-black) !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-black:hover {
    background: #333 !important;
}

.btn-outline-black {
    border: 2px solid var(--primary-black) !important;
    color: var(--primary-black) !important;
    border-radius: 0;
    font-weight: 600;
    background: transparent;
}

@media (max-width: 576px) {
    .hero-section .d-flex.gap-3 {
        flex-direction: column;
        width: 100%;
    }

    .btn-black,
    .btn-outline-black {
        width: 100%;
    }
}

/* Stats Section */
.stats-wrap {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
    background: #fff;
}

.stat-item h2 {
    font-size: 45px;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 700;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Cards */
.service-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    transition: 0.3s;
    height: 100%;
    background: #fff;
}

.service-card:hover {
    border-color: var(--primary-black);
    background: var(--primary-black);
    color: white;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
    color: white;
}

.service-card i {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

/* Contact Section */
.contact-section {
    background: var(--light-grey);
    padding: 80px 0;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 12px;
    margin-bottom: 15px;
    background: #fff;
}

.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: none;
}

/* Utility */
.section-padding {
    padding: 80px 0;
}

.label-top {
    font-weight: 700;
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* Portfolio */
.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    background: #eee;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}