/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Introduction */
.contact-intro {
    background-color: var(--light-gray);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 3rem 2.5rem;
    border: 1px solid #e9ecef;
}

.form-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.form-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--dark-gray);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
    background-color: var(--white);
}

.contact-form .form-control:hover,
.contact-form .form-select:hover {
    border-color: var(--primary-light);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-check {
    margin-bottom: 1rem;
}

.contact-form .form-check-input {
    border: 2px solid #e9ecef;
    margin-top: 0.25rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.contact-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

.contact-form .form-check-label {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form .btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.contact-info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
    background-color: var(--white);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
}

.contact-info-card p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: var(--font-weight-medium);
}

.contact-info-card a:hover {
    color: var(--accent-light);
}

.contact-info-card small {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Response Time Card */
.response-time-card {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--accent-color);
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.response-time-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.response-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.response-time-card h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

.response-time-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background-color: var(--light-gray);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background-color: var(--white);
    border: 2px solid #e9ecef;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-placeholder p strong {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.accordion-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: var(--light-gray);
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
    border-color: var(--accent-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: var(--white);
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    padding: 2rem;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-sidebar {
        position: static;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 1rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .contact-form .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-info-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.2rem;
    }
    
    .response-time-card {
        padding: 1.5rem 1rem;
    }
    
    .response-icon {
        width: 50px;
        height: 50px;
    }
    
    .response-icon i {
        font-size: 1.3rem;
    }
    
    .response-time-card h5 {
        font-size: 1.1rem;
    }
    
    .map-placeholder {
        padding: 2.5rem 1rem;
        min-height: 250px;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .map-placeholder h4 {
        font-size: 1.3rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-form .form-label {
        font-size: 0.95rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .contact-form .form-check-label {
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 1rem;
    }
    
    .response-time-card {
        padding: 1.2rem 0.8rem;
    }
    
    .response-time-card h5 {
        font-size: 1rem;
    }
    
    .response-time-card p {
        font-size: 0.9rem;
    }
    
    .map-placeholder {
        padding: 2rem 0.8rem;
        min-height: 200px;
    }
    
    .map-placeholder i {
        font-size: 2rem;
    }
    
    .map-placeholder h4 {
        font-size: 1.2rem;
    }
    
    .map-placeholder p {
        font-size: 0.9rem;
    }
    
    .accordion-button {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
}

/* Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4m0-2.4L5.8 7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-check-input.is-invalid {
    border-color: #dc3545;
}

.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

/* Success states for future use */
.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--accent-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2327ae60' d='m2.3 6.73.94-.94 1.86 1.86L6.66 5.71l.94.94-3.32 3.32-2.8-2.8z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-check-input.is-valid {
    border-color: var(--accent-color);
}

.form-check-input.is-valid ~ .form-check-label {
    color: var(--dark-gray);
}

/* Loading states for form submission */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles *//* ==========================================================================
   Services Page Styles
   ========================================================================== */

/* Services Introduction */
.services-intro {
    background-color: var(--light-gray);
}

/* Services Headers */
.services-header {
    text-align: left;
    margin-bottom: 3rem;
}

.services-section-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.services-section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.6;
}

/* Core Services */
.core-services {
    background-color: var(--white);
}

.service-detail-card {
    background-color: var(--light-gray);
    padding: 3rem 2.5rem;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.service-detail-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.1);
    background-color: var(--white);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-detail-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.service-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    width: 16px;
}

/* Partner Services */
.partner-services {
    background-color: var(--light-gray);
}

.partner-service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.partner-service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.partner-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
}

.partner-service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.partner-service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partner-service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.partner-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.partner-badge span {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
}

/* Process Section */
.process-section {
    background-color: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 2rem;
}

.process-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.process-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-features li {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
}

.process-features li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Why Services Section */
.why-services {
    background-color: var(--light-gray);
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.benefit-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

.benefit-content p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Services Stats */
.services-stats {
    margin-top: 2rem;
}

.stat-box {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.stat-box.animate-in {
    opacity: 1;
    transform: scale(1);
}

.stat-box:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.stat-box h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-bold);
}

.stat-box p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .services-section-title {
        font-size: 2rem;
    }
    
    .services-section-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .partner-service-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .benefit-item {
        margin-bottom: 1.5rem;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-section-title {
        font-size: 1.8rem;
    }
    
    .service-detail-card {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-detail-icon i {
        font-size: 1.8rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.3rem;
    }
    
    .partner-service-card {
        padding: 2rem 1.5rem;
    }
    
    .partner-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .partner-service-icon i {
        font-size: 1.5rem;
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-content h4 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 1rem;
    }
    
    .stat-box {
        height: 100px;
        padding: 1.5rem 1rem;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
    }
    
    .stat-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-section-title {
        font-size: 1.6rem;
    }
    
    .services-section-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-card {
        padding: 1.5rem 1rem;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-detail-icon i {
        font-size: 1.5rem;
    }
    
    .service-detail-content h3 {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .partner-service-card {
        padding: 1.5rem 1rem;
    }
    
    .partner-service-card h4 {
        font-size: 1.2rem;
    }
    
    .partner-badge span {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-content h4 {
        font-size: 1.2rem;
    }
    
    .process-content p {
        font-size: 1rem;
    }
    
    .process-features li {
        font-size: 0.9rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.3rem;
    }
    
    .benefit-content h5 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .stat-box {
        height: 90px;
        padding: 1rem 0.5rem;
    }
    
    .stat-box h3 {
        font-size: 1.5rem;
    }
    
    .stat-box p {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Contact Page Styles (Placeholder for future)
   ========================================================================== */

/* Contact Form */
.contact-form {
    background-color: var(--white);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
    background-color: var(--white);
}

.form-control:hover {
    border-color: var(--primary-light);
}

.form-select {
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Contact Info */
.contact-info-card {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    border: 1px solid #e9ecef;
    height: 100%;
    text-align: center;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--gray);
    margin: 0;
    font-size: 1.1rem;
}

.contact-info-card a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--accent-light);
}

/* Map Section */
.map-section {
    background-color: var(--light-gray);
}

.map-placeholder {
    background-color: var(--white);
    border: 2px solid #e9ecef;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Additional Utility Classes
   ========================================================================== */

/* Enhanced spacing utilities */
.py-8 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-9 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.mb-8 {
    margin-bottom: 6rem;
}

.mb-9 {
    margin-bottom: 7rem;
}

/* Text utilities */
.text-large {
    font-size: 1.2rem;
}

.text-small {
    font-size: 0.9rem;
}

.font-medium {
    font-weight: var(--font-weight-medium);
}

.font-semibold {
    font-weight: var(--font-weight-semibold);
}

/* Background utilities */
.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-secondary-light {
    background-color: var(--secondary-light);
}

/* Border utilities */
.border-light {
    border-color: #e9ecef !important;
}

.border-primary-light {
    border-color: var(--primary-light) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.05);
}

.shadow-md {
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1);
}

.shadow-lg {
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.15);
}

/* Hover utilities */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: var(--transition);
}

/* Animation delay classes for staggered animations */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Print Styles *//* ==========================================================================
   Property Recruits - Custom Styles
   ========================================================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #2c3e50;
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    
    /* Secondary Colors */
    --secondary-color: #27ae60;
    --secondary-light: #2ecc71;
    --secondary-dark: #1e8449;
    
    /* Accent Colors */
    --accent-color: #27ae60;
    --accent-light: #2ecc71;
    
    /* Background Colors */
    --cta-bg-color: #34495e;
    --footer-bg-color: #1a252f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #495057;
    --black: #212529;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 80px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Links */
a {
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
}

.navbar-scrolled {
    background-color: var(--primary-dark);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white) !important;
}

.navbar-nav .nav-link {
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-light) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    font-weight: var(--font-weight-medium);
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-cta:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-image {
    text-align: center;
}

.image-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 4rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary-light);
}

.image-placeholder p {
    font-size: 1.2rem;
    margin: 0;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.services-overview {
    background-color: var(--light-gray);
}

.why-choose-us {
    background-color: var(--white);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition);
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    margin-top: 2rem;
}

.stat-card {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.stat-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.stat-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.stat-card h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background-color: var(--cta-bg-color);
    color: var(--white);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-actions {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--footer-bg-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary-light);
    width: 20px;
}

.footer-subtitle {
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-light);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright,
.footer-domain {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-actions .btn:last-child {
        margin-bottom: 0;
    }
    
    .cta-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-actions .btn:last-child {
        margin-bottom: 0;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .stat-card {
        height: 100px;
        padding: 1.5rem 1rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-stats {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .stat-card {
        height: 90px;
        padding: 1rem 0.5rem;
    }
    
    .stat-card h3 {
        font-size: 1.3rem;
    }
    
    .image-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Animation Classes
   ========================================================================== */

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.border-secondary {
    border-color: var(--secondary-color) !important;
}

/* Custom spacing */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-7 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

.mb-7 {
    margin-bottom: 5rem;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--secondary-light);
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

.page-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* About Introduction */
.about-intro {
    background-color: var(--white);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-image .image-placeholder {
    background-color: var(--light-gray);
    border: 2px solid #e9ecef;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray);
}

.about-image .image-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-image .image-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-image .image-placeholder p {
    margin: 0;
    color: var(--gray);
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--light-gray);
}

.mission-card,
.vision-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid #e9ecef;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.mission-card.animate-in,
.vision-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.7;
}

/* Credibility Section */
.credibility-section {
    background-color: var(--white);
}

.credibility-card {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.credibility-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.credibility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
    background-color: var(--white);
}

.credibility-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credibility-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.credibility-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.credibility-card p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Our Approach */
.our-approach {
    background-color: var(--light-gray);
}

.approach-image .image-placeholder {
    background-color: var(--white);
    border: 2px solid #e9ecef;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray);
}

.approach-image .image-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.approach-image .image-placeholder h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.approach-points {
    margin-top: 2rem;
}

.approach-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition);
}

.approach-point.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.point-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.point-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.point-content p {
    color: var(--gray);
    margin: 0;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    background-color: var(--white);
}

.value-card {
    background-color: var(--light-gray);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    height: 100%;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
}

.value-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.1);
    background-color: var(--white);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* About Page Responsive */
@media (max-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .credibility-card,
    .value-card {
        margin-bottom: 2rem;
    }
    
    .approach-point {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-card,
    .vision-card,
    .credibility-card,
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .approach-point {
        flex-direction: column;
        text-align: center;
    }
    
    .point-number {
        margin: 0 auto 1rem;
    }
    
    .about-image .image-placeholder,
    .approach-image .image-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .about-image .image-placeholder i,
    .approach-image .image-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .mission-icon,
    .vision-icon,
    .credibility-icon,
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon i,
    .vision-icon i,
    .credibility-icon i,
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .point-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .mission-card h3,
    .vision-card h3,
    .credibility-card h4,
    .value-card h4 {
        font-size: 1.2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .navbar,
    .hero-section,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: black !important;
    }
    
    .service-card,
    .feature-item,
    .stat-card {
        page-break-inside: avoid;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}


.page-header {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px; /* adjust as needed */
  padding: 80px 0;
}

.page-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .breadcrumb a {
  text-decoration: none;
}


/* Wrap only the logo area in a white background */
.navbar .navbar-brand {
  position: relative;
  background: #fff;
  padding: 0.25rem 1rem; /* adjust spacing */
  z-index: 2;
}

/* Create a slanted right edge */
.navbar .navbar-brand::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px; /* width of the slant */
  width: 40px;  /* controls how slanted it looks */
  height: 100%;
  background: #fff;
  transform: skewX(-20deg); /* adjust the angle */
  transform-origin: top;
  z-index: -1;
}

/* Make sure logo stays aligned inside */
.navbar .navbar-brand img {
  display: block;
}

.footer-title {
  position: relative;
  display: inline-block; /* so background hugs the logo */
  background: #fff;
  padding: 0.25rem 1rem; /* spacing around logo */
  z-index: 2;
}

/* Slanted edge on the right */
.footer-title::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;   /* how far it sticks out */
  width: 40px;    /* size of the slant */
  height: 100%;
  background: #fff;
  transform: skewX(-20deg); /* slant angle */
  transform-origin: top;
  z-index: -1;
}

.footer-title img {
  display: block;
}
