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

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

html { scroll-behavior: smooth; }

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

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

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

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

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

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

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

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

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

.btn-emergency {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-emergency:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-full { width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Filter Tabs */
.services-filter {
    background: var(--white);
    padding: 24px 0;
    position: sticky;
    top: 72px;
    z-index: 100;
    border-bottom: 1px solid var(--silver);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--silver);
    background: var(--white);
    color: var(--grey);
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--royal);
    color: var(--white);
    border-color: var(--royal);
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
    transform: translateY(-1px);
}

/* ENHANCED Services Section - Image First + Video Hover */
.services-section {
    padding: 48px 0 80px;
    background: var(--off-white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid var(--silver);
}

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

.service-detail-card.hidden { display: none; }

/* Service Image Slider */
.service-media {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: var(--navy);
}

.service-media .service-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 0.55s ease, transform 0.8s ease;
    pointer-events: none;
}

.service-media .service-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.service-detail-card:hover .service-media .service-slide.active {
    transform: scale(1.035);
}

.service-slider-controls {
    position: absolute;
    top: 50%;
    left: 14px;
    right: 14px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.service-slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    background: rgba(10,37,64,0.68);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
    pointer-events: auto;
}

.service-media:hover .service-slider-btn,
.service-slider-btn:focus-visible {
    opacity: 1;
    transform: scale(1);
}

.service-slider-btn:hover {
    background: var(--royal);
    border-color: var(--royal-light);
}

.service-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10,37,64,0.92), rgba(10,37,64,0.05));
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.service-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.service-slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: var(--transition);
}

.service-slider-dot.active {
    width: 24px;
    background: var(--orange);
}

.service-category {
    display: inline-block;
    background: var(--royal);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-category.emergency-tag {
    background: var(--orange);
}

/* Service Info */
.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.service-icon-large.emergency {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.service-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.service-desc {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--grey-dark);
    padding: 6px 0;
}

.feature i {
    color: var(--royal);
    font-size: 12px;
    width: 16px;
}

.service-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--silver);
    gap: 16px;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-from {
    font-size: 13px;
    color: var(--grey);
}

.price-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
}

.price-unit {
    font-size: 13px;
    color: var(--grey);
}

.emergency-price .price-amount {
    color: var(--orange);
}

/* Quote tag styling */
.quote-tag .price-amount {
    font-size: 18px;
    color: var(--royal);
}

/* ===== BOOKING MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 37, 64, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

.modal.active { display: flex; }

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlide 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.booking-modal {
    max-width: 520px;
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--silver);
    position: relative;
}

.modal-step-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--silver);
    transition: var(--transition);
}

.step-dot.active {
    background: var(--royal);
    box-shadow: 0 0 0 4px var(--royal-glow);
}

.step-line {
    width: 24px;
    height: 2px;
    background: var(--silver);
    transition: var(--transition);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i { color: var(--royal); }

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--grey);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--navy);
    background: var(--off-white);
}

.modal-body { padding: 24px; }

.selected-service-info {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--off-white);
    padding: 16px;
    border-radius: var(--radius-xs);
    margin-bottom: 24px;
}

.selected-service-info img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-xs);
}

.selected-service-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.selected-service-info p {
    font-size: 18px;
    font-weight: 700;
    color: var(--royal);
}

/* Booking Steps */
.booking-step {
    transition: var(--transition);
}

.booking-step.hidden {
    display: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--silver);
    border-radius: var(--radius-xs);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--royal);
    box-shadow: 0 0 0 3px var(--royal-glow);
}

.date-options,
.urgency-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.date-radio,
.urgency-radio {
    flex: 1;
    min-width: 100px;
    cursor: pointer;
}

.date-radio input,
.urgency-radio input { display: none; }

.date-radio span,
.urgency-radio span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--silver);
    border-radius: var(--radius-xs);
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-dark);
    transition: var(--transition);
}

.date-radio input:checked + span,
.urgency-radio input:checked + span {
    border-color: var(--royal);
    background: var(--royal-glow);
    color: var(--royal);
}

.emergency-label { color: var(--orange) !important; }

.urgency-radio input:checked + span.emergency-label {
    border-color: var(--orange);
    background: var(--orange-glow);
}

.date-input { margin-top: 12px; }

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn {
    flex: 1;
}

/* Checkbox */
.checkbox-group { margin: 20px 0; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--grey);
    line-height: 1.5;
}

.checkbox-label input { display: none; }

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--silver);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--royal);
    border-color: var(--royal);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--white);
    font-size: 11px;
}

.checkbox-text a {
    color: var(--royal);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-text a:hover { text-decoration: underline; }

/* Terms Modal */
.terms-modal { max-width: 640px; }

.terms-body { padding: 0; }

.terms-content {
    padding: 24px;
    max-height: 400px;
    overflow-y: auto;
}

.terms-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 0 8px;
}

.terms-content h4:first-child { margin-top: 0; }

.terms-content p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

.terms-actions {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--silver);
    text-align: center;
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 48px 32px;
    max-width: 440px;
}

.success-animation {
    margin-bottom: 24px;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 36px;
    animation: successPop 0.5s ease;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-modal h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.success-modal p {
    color: var(--grey);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.success-details {
    background: var(--off-white);
    border-radius: var(--radius-xs);
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.success-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--silver);
    font-size: 14px;
}

.success-detail-item:last-child {
    border-bottom: none;
}

.success-detail-item .label {
    color: var(--grey);
    font-weight: 500;
}

.success-detail-item .value {
    color: var(--navy);
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-card { grid-template-columns: 1fr; }
    .service-media { height: 280px; min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .service-pricing {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .modal-content { margin: 16px; }
    .form-actions {
        flex-direction: column;
    }
    .date-options,
    .urgency-options {
        flex-direction: column;
    }
    .date-radio,
    .urgency-radio {
        min-width: 100%;
    }
}

/* Logo Image Styles - replaces the icon while keeping text */
.logo-img-nav {
    height: 44px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

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

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