/* ───────────────────────────────────────────────────────────────────────── */
/* Custom Brand Colors & Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #ff385c;
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e0e0e0;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Global Styles */
body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: "Montserrat", sans-serif;
}

.hidden {
    display: none !important;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Image Alt Text - Make transparent */
img[alt] {
    color: transparent;
}

img[alt]:not([alt=""]) {
    color: transparent;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Typography */
.text-large {
    color: var(--text-dark);
    font-size: 52px;
    font-weight: 600;
    line-height: 68px;
}

.text-medium {
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 600;
    line-height: 52px;
}

.text-small {
    color: var(--text-light);
    font-size: 24px;
    line-height: 31px;
}

.text-tiny {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #e03150;
    border-color: #e03150;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
}

.btn-outline-primary:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.esl-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.esl-button:hover {
    opacity: 0.85;
    color: white;
    text-decoration: none;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Custom Card Styles */
.service-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.hero-cta .btn {
    transition: all 0.3s ease;
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-trust {
    opacity: 0.9;
}

.hero-trust i {
    color: #ffc107;
}

/* Service Highlights Styling */
.service-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.highlight-icon-shield {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.highlight-icon-dollar {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.highlight-icon-award {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
}

.highlight-icon i {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.highlight-text {
    color: #666666;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.why-choose-reasons .reason-icon {
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.lighting-features i {
    color: #ffc107;
}

.service-guarantee {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: #fff;
    border: none;
}

.contact-info .d-flex {
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover {
    transform: translateX(5px);
}

.shadow-box {
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Footer Styles */
.esl-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0;
}

.footer-brand h5 {
    color: #ffffff;
}

.footer-brand a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-brand a:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-brand a:hover h5 {
    color: #ffc107;
}

.footer-contact span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.footer-contact a:hover {
    color: #ffc107;
    text-decoration: none;
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateX(3px);
}

.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 4px;
    right: 4px;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-contact a:hover::after {
    transform: scaleX(1);
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.footer-links a:hover {
    color: #ffc107;
    text-decoration: none;
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateX(3px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 4px;
    right: 4px;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.footer-legal a:hover {
    color: #ffc107;
    text-decoration: none;
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateX(3px);
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 4px;
    right: 4px;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-legal a:hover::after {
    transform: scaleX(1);
}

.footer-contact .d-flex {
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 6px;
}

.footer-contact .d-flex:hover {
    background-color: rgba(255, 193, 7, 0.05);
    transform: translateX(5px);
}

.footer-links li {
    transition: all 0.3s ease;
    padding: 2px;
    border-radius: 4px;
}

.footer-links li:hover {
    background-color: rgba(255, 193, 7, 0.05);
    transform: translateX(3px);
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Cookie Footer Styling */
#cookie-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid var(--border-light);
    font-size: 16px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
    animation: slide-up 0.5s ease-in-out;
}

@media (max-width: 768px) {
    #cookie-footer {
        padding: 16px 20px;
        font-size: 14px;
        border-radius: 8px 8px 0 0;
    }
}

@media (max-width: 480px) {
    #cookie-footer {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 6px 6px 0 0;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin-left: 8px;
    }
}

@media (max-width: 320px) {
    #cookie-footer {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .cookie-btn {
        padding: 6px 12px;
        font-size: 12px;
        margin-left: 6px;
    }
}

.cookie-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: transparent;
    box-sizing: border-box;
}

#cookieMessage .cookie-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    box-sizing: border-box;
}

.cookie-text strong {
    font-weight: bold;
    color: var(--primary-color);
}

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-left: 10px;
}

.cookie-btn:hover {
    background-color: #0056b3;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.cookie-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

#cookie-footer.accepted {
    display: none;
}

@keyframes slide-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Image Modal */
#imageModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#imageModal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

#modalImage {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    object-fit: contain;
    background: #000;
    pointer-events: auto;
}

#imageModal.show #modalImage {
    opacity: 1;
    transform: scale(1);
}

#modalClose {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    pointer-events: auto;
}

#modalClose:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.modal-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    z-index: 20;
    pointer-events: auto;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 21;
    position: relative;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.modal-counter {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    #modalClose {
        top: 15px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    #modalImage {
        max-width: 95%;
        max-height: 85%;
    }
    
    .modal-navigation {
        bottom: 20px;
        gap: 15px;
        padding: 10px 16px;
    }
    
    .modal-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .modal-counter {
        font-size: 13px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    #modalClose {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    #modalImage {
        max-width: 98%;
        max-height: 80%;
    }
    
    .modal-navigation {
        bottom: 15px;
        gap: 12px;
        padding: 8px 12px;
    }
    
    .modal-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .modal-counter {
        font-size: 12px;
        min-width: 45px;
    }
}

@media (max-width: 320px) {
    #modalClose {
        top: 8px;
        right: 12px;
        width: 30px;
        height: 30px;
    }
    
    #modalImage {
        max-width: 99%;
        max-height: 75%;
    }
    
    .modal-navigation {
        bottom: 10px;
        gap: 10px;
        padding: 6px 10px;
    }
    
    .modal-nav-btn {
        width: 28px;
        height: 28px;
    }
    
    .modal-counter {
        font-size: 11px;
        min-width: 40px;
    }
}

#modalClose:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-image {
        cursor: pointer;
    transition: transform 0.2s ease;
}

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

/* ───────────────────────────────────────────────────────────────────────── */
/* Custom Form Styles */
.form-control {
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
}

::placeholder, .form-control::placeholder {
    color: #888 !important;
    opacity: 1;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .form-control {
        border-radius: 20px;
        font-size: 0.95rem;
    }
    
    ::placeholder, .form-control::placeholder {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .form-control {
        border-radius: 16px;
        font-size: 0.9rem;
    }
    
    ::placeholder, .form-control::placeholder {
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .form-control {
        border-radius: 12px;
        font-size: 0.85rem;
    }
    
    ::placeholder, .form-control::placeholder {
        font-size: 0.85rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Custom Utilities */
.bg-brand-light {
    background-color: var(--bg-light);
}

.text-brand-primary {
    color: var(--primary-color);
}

.text-brand-secondary {
    color: var(--secondary-color);
}

.border-brand-light {
    border-color: var(--border-light);
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Additional Utilities for Home Page */
.min-vh-75 {
    min-height: 75vh;
}

.gap-3 {
    gap: 1rem;
}

.h-100 {
        height: 100%;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Responsive Design - Global Styles */
@media (max-width: 768px) {
    .text-large {
        font-size: 32px;
        line-height: 42px;
    }
    
    .text-medium {
        font-size: 28px;
        line-height: 36px;
    }
    
    .text-small {
        font-size: 18px;
        line-height: 26px;
    }
    
    .text-tiny {
        font-size: 12px;
        line-height: 18px;
    }
    
    .service-card,
    .shadow-box {
        padding: 1.5rem;
    }
    
    .esl-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Hero Section Mobile Optimizations */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-lead {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-trust {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-trust .d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-trust .me-4 {
        margin-right: 1rem !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-trust .fw-semibold {
        font-size: 0.9rem;
    }
    
    /* Services Section Mobile */
    .service-highlights {
        margin-top: 1.5rem;
    }
    
    .highlight-item {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        margin-right: 0.875rem;
    }
    
    .highlight-icon i {
        font-size: 1.1rem;
    }
    
    .highlight-title {
        font-size: 0.95rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
    }
    
    .service-icon {
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .icon-img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .service-card h6 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Why Choose Section Mobile */
    .why-choose-reasons .d-flex {
        margin-bottom: 1.5rem;
    }
    
    .reason-icon {
        width: 35px;
        flex-shrink: 0;
    }
    
    .why-choose-reasons h6 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .why-choose-reasons p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Lighting Features Mobile */
    .lighting-features .col-6 {
        margin-bottom: 1rem;
    }
    
    .lighting-features .small {
        font-size: 0.875rem;
    }
    
    /* Contact Section Mobile */
    .contact-info .row .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .contact-info .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-info .btn:last-child {
        margin-bottom: 0;
    }
    
    .service-guarantee {
        margin-top: 1.5rem;
        padding: 1rem !important;
    }
    
    .service-guarantee .fw-bold {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .text-large {
        font-size: 28px;
        line-height: 36px;
    }
    
    .text-medium {
        font-size: 24px;
        line-height: 30px;
    }
    
    .text-small {
        font-size: 16px;
        line-height: 22px;
    }
    
    .text-tiny {
        font-size: 11px;
        line-height: 16px;
    }
    
    .service-card,
    .shadow-box {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .esl-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .esl-footer {
        padding: 0;
    }
    
    .footer-brand h5 {
        font-size: 1.1rem;
    }
    
    .footer-contact span {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    /* Small Mobile Hero Optimizations */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-lead {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-trust .fw-semibold {
        font-size: 0.8rem;
    }
    
    .hero-trust .me-4 {
        margin-right: 0.5rem !important;
        margin-bottom: 0.25rem;
    }
    
    /* Small Mobile Services */
    .service-card {
        padding: 0.875rem;
    }
    
    .highlight-item {
        padding: 0.75rem;
        margin-bottom: 0.875rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.75rem;
    }
    
    .highlight-icon i {
        font-size: 1rem;
    }
    
    .highlight-title {
        font-size: 0.9rem;
    }
    
    .highlight-text {
        font-size: 0.75rem;
    }
    
    .service-icon {
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .icon-img {
        max-width: 50px;
        max-height: 50px;
    }
    
    .service-card h6 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Small Mobile Contact */
    .contact-info .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-guarantee {
        padding: 0.75rem !important;
    }
    
    .service-guarantee .fw-bold {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .text-large {
        font-size: 24px;
        line-height: 30px;
    }
    
    .text-medium {
        font-size: 20px;
        line-height: 26px;
    }
    
    .text-small {
        font-size: 14px;
        line-height: 20px;
    }
    
    .service-card,
    .shadow-box {
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .esl-button {
        padding: 6px 12px;
        font-size: 0.8rem;
        border-radius: 18px;
    }
    
    /* Extra Small Mobile Optimizations */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.1 !important;
    }
    
    .highlight-item {
        padding: 0.625rem;
        margin-bottom: 0.75rem;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.625rem;
    }
    
    .highlight-icon i {
        font-size: 0.9rem;
    }
    
    .highlight-title {
        font-size: 0.85rem;
    }
    
    .highlight-text {
        font-size: 0.7rem;
    }
    
    .hero-lead {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-cta .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-trust .fw-semibold {
        font-size: 0.75rem;
    }
    
    .service-card {
        padding: 0.625rem;
    }
    
    .service-icon {
        height: 55px;
        margin-bottom: 0.5rem;
    }
    
    .icon-img {
        max-width: 45px;
        max-height: 45px;
    }
    
    .service-card h6 {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
    }
    
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .contact-info .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .service-guarantee {
        padding: 0.5rem !important;
    }
    
    .service-guarantee .fw-bold {
        font-size: 0.75rem;
    }
} 

/* ───── Portfolio Page Styles ───── */
.portfolio-main {
    background: #fff;
    min-height: 100vh;
}

/* Portfolio Hero Section */
.portfolio-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.portfolio-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.portfolio-hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 3rem 0 4rem 0;
    background: #fff;
    margin: 0 auto;
}

.portfolio-controls {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.portfolio-search-container {
    max-width: 500px;
    width: 100%;
}

.portfolio-search-form {
    width: 100%;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: #F4D35E;
    box-shadow: 0 4px 16px rgba(244, 211, 94, 0.2);
}

.search-icon {
    color: #6c757d;
    margin-left: 1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.portfolio-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    padding: 0.75rem 0;
    color: #2c3e50;
}

.portfolio-search-input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.portfolio-search-btn {
    background: linear-gradient(135deg, #F4D35E 0%, #f0c040 100%);
    border: none;
    border-radius: 40px;
    padding: 0.75rem 1.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(244, 211, 94, 0.3);
}

.portfolio-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244, 211, 94, 0.4);
    background: linear-gradient(135deg, #f0c040 0%, #F4D35E 100%);
}

.portfolio-search-btn:active {
    transform: translateY(0);
}

/* Portfolio Gallery Container */
.portfolio-gallery-container {
    margin-bottom: 3rem;
}

/* ───── Portfolio Gallery Grid System ───── */
.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    justify-content: center;
}

.portfolio-gallery-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.portfolio-gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    border-radius: 16px;
    display: block;
}

.portfolio-gallery-item:hover .portfolio-gallery-img {
    transform: scale(1.05);
}

/* Gallery Item Overlay */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 211, 94, 0.9) 0%, rgba(240, 192, 64, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    pointer-events: none; /* This ensures clicks pass through to the image */
}

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

.gallery-item-content {
    text-align: center;
    color: #2c3e50;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-gallery-item:hover .gallery-item-content {
    transform: translateY(0);
}

.gallery-item-icon {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.gallery-item-text {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.portfolio-gallery-item-wide {
    grid-column: span 2;
}

.portfolio-gallery-label {
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    font-size: 0.95rem;
    color: #222;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

/* ───── Portfolio Navigation & Controls ───── */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.portfolio-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    border: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.portfolio-nav-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;
}

.portfolio-nav-btn:hover::before {
    left: 100%;
}

.portfolio-nav-btn:hover {
    background: linear-gradient(135deg, #F4D35E 0%, #f0c040 100%);
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 211, 94, 0.3);
}

.portfolio-nav-btn:active {
    transform: translateY(0);
}

.portfolio-nav-btn svg {
    display: block;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.portfolio-nav-btn:hover svg {
    fill: #2c3e50;
    transform: scale(1.1);
}

.portfolio-page-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-current {
    background: linear-gradient(135deg, #F4D35E 0%, #f0c040 100%);
    color: #2c3e50;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(244, 211, 94, 0.3);
    position: relative;
}

.pagination-current::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #F4D35E, #f0c040);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.pagination-link {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
    position: relative;
    overflow: hidden;
}

.pagination-link::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;
}

.pagination-link:hover::before {
    left: 100%;
}

.pagination-link:hover {
    background: linear-gradient(135deg, #F4D35E 0%, #f0c040 100%);
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 211, 94, 0.3);
}

.pagination-link:active {
    transform: translateY(0);
}

/* ───── Portfolio Section Layout ───── */

.portfolio-search-btn {
    height: 42px;
    min-width: 100px;
    background: #F4D35E !important;
    color: #222 !important;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.portfolio-gallery-card {
    background: transparent;
    border: none;
    border-radius: 18px;
    padding: 0;
    width: 100%;
    margin: 0;
    max-width: none;
}

.header-contact-btn {
    background: #F4D35E !important;
    color: #222 !important;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.footer-tagline {
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ───── Responsive Design ───── */

/* Large tablets and small desktops (768px - 1024px) */
@media (max-width: 1024px) {
    .portfolio-hero-title {
        font-size: 3rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        justify-content: center;
    }
    
    .portfolio-gallery-img {
        height: 260px;
    }
    
    .portfolio-gallery-section {
        padding: 2.5rem 0 3rem 0;
    }
}

/* Tablets (768px - 900px) */
@media (max-width: 900px) {
    .portfolio-hero {
        padding: 3rem 0 2rem 0;
    }
    
    .portfolio-hero-title {
        font-size: 2.5rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
        justify-content: center;
    }
    
    .portfolio-gallery-img {
        height: 240px;
    }
    
    .portfolio-gallery-section {
        padding: 2rem 0 2.5rem 0;
    }
    
    .portfolio-search-container {
        max-width: 400px;
    }
}

/* Large phones (600px - 768px) */
@media (max-width: 768px) {
    .portfolio-hero {
        padding: 2.5rem 0 1.5rem 0;
    }
    
    .portfolio-hero-title {
        font-size: 2.25rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        justify-content: center;
    }
    
    .portfolio-gallery-img {
        height: 220px;
    }
    
    .portfolio-gallery-section {
        padding: 1.5rem 0 2rem 0;
    }
    
    .portfolio-controls {
        margin-bottom: 2rem;
    }
    
    .portfolio-search-container {
        max-width: 350px;
    }
    
    .search-input-group {
        padding: 0.4rem;
    }
    
    .portfolio-search-input {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .portfolio-search-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .portfolio-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .portfolio-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .pagination-current,
    .pagination-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Medium phones (480px - 600px) */
@media (max-width: 600px) {
    .portfolio-hero {
        padding: 2rem 0 1rem 0;
    }
    
    .portfolio-hero-title {
        font-size: 2rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .portfolio-gallery-img {
        height: 180px;
    }
    
    .portfolio-gallery-section {
        padding: 1rem 0 1.5rem 0;
    }
    
    .portfolio-controls {
        margin-bottom: 1.5rem;
    }
    
    .portfolio-search-container {
        max-width: 100%;
    }
    
    .search-input-group {
        padding: 0.35rem;
    }
    
    .portfolio-search-input {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .portfolio-search-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .portfolio-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .portfolio-nav-btn svg {
        width: 15px;
        height: 15px;
    }
    
    .pagination-current,
    .pagination-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .portfolio-pagination {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
}

/* Small phones (320px - 480px) - iPhone SE, etc. */
@media (max-width: 480px) {
    .portfolio-hero {
        padding: 1.5rem 0 1rem 0;
    }
    
    .portfolio-hero-title {
        font-size: 1.75rem;
    }
    
    .portfolio-hero-subtitle {
        font-size: 0.85rem;
    }
    
    .portfolio-gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .portfolio-gallery-img {
        height: 200px;
    }
    
    .portfolio-gallery-section {
        padding: 1rem 0 1.5rem 0;
    }
    
    .portfolio-controls {
        margin-bottom: 1.25rem;
    }
    
    .search-input-group {
        padding: 0.3rem;
        border-radius: 40px;
    }
    
    .search-icon {
        margin-left: 0.75rem;
        margin-right: 0.5rem;
    }
    
    .portfolio-search-input {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .portfolio-search-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .portfolio-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .portfolio-nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .pagination-current,
    .pagination-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .portfolio-pagination {
        gap: 0.5rem;
        margin-top: 1.25rem;
    }
    
    .gallery-item-text {
        font-size: 0.9rem;
    }
    
    .gallery-item-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra small phones (below 320px) */
@media (max-width: 320px) {
    .portfolio-gallery-grid {
        max-width: 240px;
    }
    
    .portfolio-gallery-item {
        min-height: 80px;
        padding: 1px;
    }
    
    .portfolio-card {
        padding: 8px 8px 6px 8px;
        margin: 8px auto 0 auto;
    }
    
    .portfolio-title {
        font-size: 1rem;
    }
    
    .portfolio-search-input {
        height: 28px;
        font-size: 0.8rem;
    }
    
    .portfolio-search-btn {
        height: 28px;
        font-size: 0.75rem;
    }
}

/* ───── Tablet Optimizations ───── */

/* Tablets (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-lead {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
    }
    
    .hero-cta .btn {
        padding: 14px 28px;
        font-size: 1.1rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .service-icon {
        height: 80px;
    }
    
    .icon-img {
        max-width: 70px;
        max-height: 70px;
    }
    
    .service-card h6 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .why-choose-reasons h6 {
        font-size: 1.1rem;
    }
    
    .why-choose-reasons p {
        font-size: 0.95rem;
    }
    
    .contact-info .btn {
        padding: 14px 28px;
        font-size: 1.1rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .highlight-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .highlight-icon {
        width: 55px;
        height: 55px;
        margin-right: 1.25rem;
    }
    
    .highlight-icon i {
        font-size: 1.4rem;
    }
    
    .highlight-title {
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
}

/* ───── Large Screen Optimizations ───── */

/* Large desktops (1200px+) */
@media (min-width: 1200px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 28px;
    }
    
    .portfolio-gallery-item {
        min-height: 220px;
        padding: 10px;
    }
    
    .portfolio-gallery-section {
        width: 85%;
        max-width: 1400px;
    }
}

/* Extra large screens (1600px+) */
@media (min-width: 1600px) {
    .portfolio-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: 32px;
    }
    
    .portfolio-gallery-item {
        min-height: 240px;
        padding: 12px;
    }
    
    .portfolio-gallery-section {
        width: 80%;
        max-width: 1600px;
    }
}

/* Hero Section Background */
.bg-hero {
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    min-height: 420px;
}

.hero-container {
    z-index: 2;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-title {
    line-height: 1.1;
}

.hero-lead {
    max-width: 500px;
}

.bg-hero-overlay {
    background: rgba(0,0,0,0.55);
}

.services-hero-img {
    max-width: 320px;
}

.icon-img {
    width: 60px;
    height: 60px;
}

.why-choose-img {
    max-width: 260px;
}

.btn-portfolio {
    background: #F4D35E;
    border: none;
}

.transform-img {
    max-width: 180px;
}

.experience-difference-img {
    max-width: 220px;
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Touch & Accessibility Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .portfolio-gallery-item:hover {
        transform: none;
    }
    
    .portfolio-gallery-item:hover .portfolio-gallery-img {
        transform: none;
    }
    
    .gallery-image:hover {
        transform: none;
    }
    
    .esl-button:hover {
        opacity: 1;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-outline-primary:hover {
        transform: none;
    }
    
    .portfolio-nav-btn:hover {
        transform: none;
    }
    
    .pagination-link:hover {
        transform: none;
    }
    
    /* Modal touch optimizations */
    #modalClose:hover,
    .modal-nav-btn:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .portfolio-nav-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .pagination-current,
    .pagination-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .cookie-btn {
        min-height: 44px;
    }
    
    .esl-button {
        min-height: 44px;
    }
    
    #modalClose,
    .modal-nav-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .portfolio-gallery-item {
        border: 2px solid #000;
    }
    
    .portfolio-nav-btn {
        border: 2px solid #fff;
    }
    
    .pagination-current,
    .pagination-link {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .portfolio-gallery-item:hover,
    .portfolio-gallery-item:hover .portfolio-gallery-img,
    .gallery-image:hover,
    .portfolio-nav-btn:hover,
    .pagination-link:hover,
    #modalClose:hover,
    .modal-nav-btn:hover {
        transform: none;
    }
    
    #modalImage {
        transition: none !important;
    }
}

/* Modal performance optimizations */
#imageModal {
    will-change: opacity;
}

#modalImage {
    will-change: transform, opacity;
}

/* Modal loading state */
#modalImage:not([src]) {
    display: none;
}

#modalImage[src] {
    display: block;
}

/* Modal focus styles for accessibility */
#modalClose:focus,
.modal-nav-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Modal backdrop blur for modern browsers */
@supports (backdrop-filter: blur(10px)) {
    #modalClose,
    .modal-navigation {
        backdrop-filter: blur(10px);
    }
}

/* Cookie Footer fixed position */
#cookie-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
} 

/* ───────────────────────────────────────────────────────────────────────── */
/* About Page Styles */
.hero {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-text {
    position: relative;
    color: #fff;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.hero-text p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
    opacity: 0.95;
}

.about-story {
    margin: 2rem 0;
    padding: 0 1.5rem;
}
.about-story h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.about-story p {
    font-size: 1rem;
    color: var(--text-light);
}

.about-van {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.about-van img {
    width: 80%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.mission-statement {
    background: none;
    padding: 2.5rem 0 2.5rem 0;
    margin: 3rem 0 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.mission-statement h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 0;
    line-height: 1.1;
    display: inline-block;
    border-bottom: 3px solid var(--border-light);
    padding-bottom: 0.3rem;
}
.mission-statement p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
}
@media (max-width: 900px) {
    .mission-statement {
        padding: 1.5rem 0 1.5rem 0;
        margin: 2rem 0 1.5rem 0;
    }
    .mission-statement h2 {
        font-size: 1.3rem;
        border-bottom-width: 2px;
    }
    .mission-statement p {
        font-size: 0.98rem;
    }
}

.cta {
    position: relative;
    margin: 2rem 0;
    background: #222;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
}
.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-btn {
    background: #b6ff8a;
    color: #222;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-btn:hover {
    background: #a0e86e;
}

.cta.position-relative.overflow-hidden {
    min-height: 60vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin: 3rem 0 0 0;
    padding: 0;
    border-radius: 0;
}
.cta .hero-bg-img {
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    width: 100vw;
    height: 100%;
    min-height: 60vh;
    left: 0;
    top: 0;
    border-radius: 0;
}
.cta .hero-overlay {
    background: linear-gradient(120deg, rgba(0,0,0,0.55) 60%, rgba(0,123,255,0.35) 100%);
    border-radius: 0;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 3.5rem 2.5rem;
    color: #fff;
    max-width: 600px;
}
.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 0 #222;
}
.contact-btn {
    background: linear-gradient(90deg, #b6ff8a 60%, #00c3ff 100%);
    color: #222;
    border: none;
    border-radius: 12px;
    padding: 1.1rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,195,255,0.18), 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    text-shadow: 0 2px 8px rgba(255,255,255,0.18);
}
.contact-btn:hover {
    background: linear-gradient(90deg, #a0e86e 60%, #00b0e0 100%);
    box-shadow: 0 8px 32px rgba(0,195,255,0.28), 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px) scale(1.04);
}
@media (min-width: 1200px) {
    .hero-text {
        padding: 5rem 3rem;
        max-width: 900px;
    }
    .hero-text h1 {
        font-size: 4rem;
        margin-bottom: 1.25rem;
    }
    .hero-text p {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-text {
        padding: 3rem 1.5rem;
        max-width: 100%;
        min-height: 50vh;
    }
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    .hero-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text {
        padding: 2rem 1rem;
        min-height: 40vh;
    }
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .cta-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }
    .cta.position-relative.overflow-hidden {
        border-radius: 0;
    }
    .cta .hero-bg-img, .cta .hero-overlay {
        border-radius: 0;
    }
    .cta-content h2 {
        font-size: 1.5rem;
    }
    .contact-btn {
        font-size: 1rem;
        padding: 0.85rem 1.5rem;
    }
} 

/* ───────────────────────────────────────────────────────────────────────── */
/* Enhanced Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 1050;
        padding: 1.5rem 0 1rem 0;
        border-radius: 0 0 18px 18px;
        transition: box-shadow 0.2s;
    }
    .navbar-nav {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
        padding: 0 1.5rem;
    }
    .navbar-nav .nav-item {
        margin: 0.25rem 0;
    }
    .navbar-nav .nav-link,
    .navbar-nav .btn {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        text-align: left;
        width: 100%;
        transition: background 0.15s, color 0.15s;
    }
    .navbar-nav .nav-link:active,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link:hover,
    .navbar-nav .btn:active,
    .navbar-nav .btn:focus,
    .navbar-nav .btn:hover {
        background: #f8f9fa;
        color: var(--primary-color);
    }
    .navbar-nav .header-contact-btn {
        margin-top: 0.5rem;
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }
    .navbar-collapse .w-100 {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .header-contact-btn {
        align-self: flex-end;
        width: auto;
        margin-right: 1.5rem;
        margin-left: 0;
        margin-top: 1.5rem !important;
    }
    .navbar-mobile-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        padding: 0 1.5rem;
    }
    .navbar-mobile-flex .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        padding: 0;
        margin: 0;
    }
    .navbar-mobile-flex .header-contact-btn {
        align-self: flex-start;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0.25rem !important;
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
        white-space: nowrap;
    }
    .navbar-mobile-flex .mobile-contact-btn {
        position: absolute;
        right: 1.5rem;
        bottom: 1.2rem;
        margin: 0;
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
        white-space: nowrap;
        z-index: 2;
    }
} 

.hero-content-z {
    z-index: 2;
} 

.hero-section {
    min-height: 60vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}
.hero-bg-img {
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    width: 100vw;
    height: 100%;
    min-height: 60vh;
    left: 0;
    top: 0;
} 

.about-section-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}
.about-section-flex .about-story {
    width: 50%;
    min-width: 320px;
    text-align: left;
    padding: 0 0 1.5rem 0;
    margin-bottom: 0;
}
.about-section-flex .about-story h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0;
    line-height: 1.1;
}
.about-section-flex .about-story p {
    font-size: 1.08rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}
.about-section-flex .about-van {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2.5rem;
}
.about-section-flex .about-van img {
    max-width: 700px;
    width: 80%;
    margin-left: 0;
    border-radius: 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
    .about-section-flex {
        padding: 0 1rem;
    }
    .about-section-flex .about-story {
        width: 100%;
        min-width: 0;
        padding: 0 0 1.2rem 0;
    }
    .about-section-flex .about-story h2 {
        font-size: 1.5rem;
    }
    .about-section-flex .about-story p {
        font-size: 0.98rem;
    }
}

/* ───────────────────────────────────────────────────────────────────────── */
/* About Page Specific Styles */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.value-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary-color) !important;
}

.value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 12px;
    color: white !important;
}

.team-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary-color);
}

.team-image img {
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.mission-statement {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .team-card {
        margin-bottom: 2rem;
    }
    
    .mission-statement {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2rem !important;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.5rem !important;
    }
    
    .team-image img {
        width: 100px !important;
        height: 100px !important;
    }
}

/* ───────────────────────────────────────────────────────────────────────── */
/* Markdown Content Styling */
.markdown-content {
    color: var(--text-dark);
    line-height: 1.6;
}

.markdown-content h1 {
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.markdown-content h2 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.markdown-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.markdown-content h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.25rem;
}

.markdown-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.markdown-content ul, .markdown-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.markdown-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.markdown-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.markdown-content em {
    font-style: italic;
    color: var(--text-light);
}

.markdown-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
    background-color: rgba(0, 123, 255, 0.05);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.markdown-content code {
    background-color: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--text-dark);
}

.markdown-content pre {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid var(--border-light);
}

.markdown-content pre code {
    background-color: transparent;
    padding: 0;
    color: var(--text-dark);
}

.markdown-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.markdown-content a:hover {
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

.markdown-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.markdown-content th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.markdown-content td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-light);
}

.markdown-content tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Responsive markdown content */
@media (max-width: 768px) {
    .markdown-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .markdown-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .markdown-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .markdown-content ul, .markdown-content ol {
        padding-left: 1.5rem;
    }
    
    .markdown-content table {
        font-size: 0.9rem;
    }
    
    .markdown-content th, .markdown-content td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .markdown-content h1 {
        font-size: 1.75rem;
    }
    
    .markdown-content h2 {
        font-size: 1.5rem;
    }
    
    .markdown-content h3 {
        font-size: 1.125rem;
    }
    
    .markdown-content ul, .markdown-content ol {
        padding-left: 1.25rem;
    }
    
    .markdown-content table {
        font-size: 0.8rem;
    }
    
    .markdown-content th, .markdown-content td {
        padding: 0.5rem;
    }
} 