/* Custom CSS for Expert Holding with Bootstrap Integration */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Root Variables for Brand Colors - Strategia de culori aplicată */
:root {
    --primary-color: #0A5B69;
    --secondary-color: #08414C;
    --accent-color: #137E90;
    --light-bg: #F4F6F7;
    --text-dark: #222222;
    --text-muted: #6c757d;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(10, 91, 105, 0.1);
    --shadow-lg: 0 15px 35px rgba(10, 91, 105, 0.15);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Custom Bootstrap Overrides */
:root {
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-success: #10B981;
    --bs-info: var(--accent-color);
    --bs-warning: #F59E0B;
    --bs-danger: #EF4444;
    --bs-light: var(--light-bg);
    --bs-dark: var(--secondary-color);
}

/* Beautiful Navigation Styles - Cu strategia de culori aplicată */
.custom-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(10, 91, 105, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar.scrolled {
    background: linear-gradient(135deg, rgba(10, 91, 105, 0.98), rgba(8, 65, 76, 0.98)) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(10, 91, 105, 0.4);
    padding: 0.5rem 0;
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.1) contrast(1.1);
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 600;
    padding: 0.6rem 1.2rem !important;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

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

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-shadow: none;
}

.navbar-nav .nav-link.active {
    background: var(--white);
    color: var(--primary-color) !important;
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

/* Hero Section - Cu strategia de culori aplicată */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 50%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(19, 126, 144, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(10, 91, 105, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.hero-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    color: var(--text-dark);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn {
    font-size: 16px !important;
    font-weight: 600;
}

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

/* Section Titles - Cu strategia de culori aplicată */
.section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Service Cards - Cu strategia de culori aplicată */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--primary-color) !important;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 126, 144, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg) !important;
    border-left-color: var(--accent-color) !important;
}

.service-icon i {
    animation: bounce 2s infinite;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(10, 91, 105, 0.2));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Map Styles */
.romania-map {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.romania-map.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.romania-map.loading::after {
    content: 'Se încarcă harta României...';
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Map Legend */
.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.blue {
    background: var(--accent-color);
}

.legend-dot.red {
    background: #D14848;
}

/* Location Items - Cu strategia de culori aplicată */
.location-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

/* Contact Items - Enhanced Design */
.contact-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-left: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 126, 144, 0.1), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(10, 91, 105, 0.2);
    border-left-color: var(--primary-color);
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(10, 91, 105, 0.3);
}

.contact-icon i {
    color: var(--white) !important;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--white) !important;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(10, 91, 105, 0.4);
}

.contact-item h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover h5 {
    color: var(--accent-color);
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-item a:hover::after {
    width: 100%;
}

/* Contact Section Title Enhancement */
.contact-section .card-title {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    margin-bottom: 2rem;
}

.contact-section .card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Contact Card Enhancement */
.contact-section .card {
    border: none;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
}


/* Contact Section Background */
.contact-section {
    position: relative;
    overflow: hidden;
}
/* Form Styles - Enhanced Design */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: var(--white);
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 91, 105, 0.25);
    transform: translateY(-2px);
}

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

/* Contact Form Card Enhancement */
.contact-form-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 91, 105, 0.1);
    transition: all 0.4s ease;
    border: none;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 91, 105, 0.15);
}

/* Form Button Enhancement */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10, 91, 105, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 91, 105, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 20px;
}

/* Textarea Specific Styling */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form Validation Styling */
.was-validated .form-control:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 1.44-1.44'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    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 1.4 1.4 1.4-1.4'/%3e%3c/svg%3e");
}

/* Button Styles - Cu strategia de culori aplicată */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 91, 105, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(10, 91, 105, 0.3);
}

/* SVG Map Customization - Optimized for MapSVG Romania map */
.romania-map {
    aspect-ratio: 16 / 9;        /* Better ratio for Romania */
    width: 100% !important;
    max-width: 100%;
    height: 500px;               /* Fixed height to eliminate white space */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border-radius: 10px;
    margin: 0 auto;              /* Center horizontally */
}

.romania-map .svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure the card body centers the map */
.card-body.p-0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    width: 100%;
    padding: 0 !important;
}

/* Ensure the card itself is centered */
.col-lg-8 .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Force the map to be centered within its container */
#romania-map {
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


.romania-svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: translateX(0) scale(1);
    transform-origin: center;
    padding-top: 5%;
    padding-left: 8%;
}

/* Responsive map sizing - Optimized for MapSVG */
@media (max-width: 768px) {
.romania-map {
        aspect-ratio: 4 / 3;       /* Better ratio for mobile */
        height: 300px;             /* Reduced height for mobile */
        margin: 0 auto;          /* Ensure centering on mobile */
    }
    
    .romania-map svg {
        transform: translateX(0) scale(0.9);
        padding-top: 3%;
        padding-left: 5%;
    }
    
    .card-body.p-0 {
        min-height: 300px;
    }
}

/* Tablet specific adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .romania-map {
        aspect-ratio: 16 / 10;     /* Good ratio for tablets */
        height: 350px;             /* Medium height for tablets */
    }
    
    .romania-map svg {
        transform: translateX(0) scale(0.95);
        padding-top: 4%;
        padding-left: 6%;
    }
}

@media (min-width: 1200px) {
    .romania-map {
        aspect-ratio: 16 / 9;    /* Consistent ratio */
        height: 600px;           /* Fixed height */
        margin: 0 auto;          /* Ensure centering on desktop */
    }
    
    .romania-map svg {
        transform: translateX(0) scale(1);
        padding-top: 5%;
        padding-left: 8%;
    }
    
    .card-body.p-0 {
        min-height: 600px;
    }
}

/* Ensure map fits in card on all screen sizes */
@media (max-width: 576px) {
    .romania-map {
        aspect-ratio: 1 / 1;       /* Square ratio for very small screens */
        height: 320px;             /* Very big height for small mobile */
        margin: 0 auto;          /* Ensure centering on small screens */
    }
    
    .romania-map svg {
        transform: translateX(0) scale(1);
        padding-top: 4%;
        padding-left: 5%;
    }
    
    .card-body.p-0 {
        min-height: 320px;
    }
}

/* MapSVG Romania map styling */
.romania-svg {
    opacity: 0;
    animation: fadeInMap 0.6s ease-in-out forwards;
}

@keyframes fadeInMap {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.county, 
.romania-svg path[id], 
.romania-svg g[id] {
    fill: #E5E7EB;
    stroke: var(--white);
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

/* Counties with locations - show in accent color by default */
.county.has-location,
.romania-svg path[id].has-location,
.romania-svg g[id].has-location {
    fill: var(--accent-color);
    stroke: var(--primary-color);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(19, 126, 144, 0.2));
}

.county:hover,
.romania-svg path[id]:hover,
.romania-svg g[id]:hover {
    fill: var(--primary-color) !important;
    stroke: var(--white) !important;
    stroke-width: 2;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(10, 91, 105, 0.3));
}

.county.active {
    fill: var(--primary-color) !important;
    stroke: var(--white) !important;
    stroke-width: 3;
    transform: scale(1.02);
    filter: drop-shadow(0 6px 12px rgba(10, 91, 105, 0.4));
}


/* Map Legend Styles */
.map-legend {
    background: linear-gradient(135deg, var(--light-bg), var(--white)) !important;
    border-top: 1px solid rgba(10, 91, 105, 0.1) !important;
    width:100%;
}

.legend-color {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Tooltip Styles - Cu strategia de culori aplicată */
.tooltip {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(-50%, -130%);
    display: none;
    pointer-events: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(10, 91, 105, 0.3);
    z-index: 10000;
}

/* Mobile Card Styles - Inspired by the provided code */
.mobile-card {
    position: fixed;
    display: none;
    max-width: 300px;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid #dfe3ea;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(18, 26, 44, 0.18);
    padding: 12px 12px 14px;
    z-index: 10000;
    transform: translate(-50%, -100%) scale(0.98);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-card.show {
    opacity: 1;
    transform: translate(-50%, -100%) scale(1);
}

.mobile-card::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--white);
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.mobile-card h3 {
    margin: 0 32px 4px 0;
    font: 700 16px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial;
    letter-spacing: 0.2px;
    color: var(--primary-color);
}

.mobile-card pre {
    margin: 0;
    white-space: pre-wrap;
    font: 13px/1.35 ui-sans-serif, system-ui, Arial;
    color: var(--text-dark);
}

.phones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.phones a {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #cad6ff;
    background: #f2f6ff;
    color: var(--primary-color);
    padding: 7px 10px;
    border-radius: 9px;
    font: 600 13px/1 system-ui;
    transition: all 0.3s ease;
}

.phones a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: 700 18px/1 system-ui;
    color: #7a8493;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
}

.close-btn:focus {
    outline: 2px solid #cdd7ff;
    border-radius: 6px;
}

/* Hide mobile card on desktop */
@media (min-width: 992px) {
    .mobile-card {
        display: none !important;
    }
}

/* Social Links - Cu strategia de culori aplicată */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar - Cu strategia de culori aplicată */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

/* Comprehensive Responsive Design */

/* Large Desktop (≥1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .romania-map {
        height: 700px;
    }
}

/* Desktop (≥1200px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .romania-map {
        height: 500px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .navbar-logo {
        height: 42px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .contact-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .form-control {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* Mobile Portrait (≤575px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .service-card {
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 8px;
        margin-bottom: 8px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        margin: 0 auto 10px;
    }
    
    .contact-icon i {
        font-size: 12px;
    }
    
    .form-control {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .card-body {
        padding: 15px !important;
    }
    
    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .whatsapp-btn i {
        font-size: 14px;
    }
}

/* Extra Small Mobile (≤400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .contact-item {
        padding: 6px;
    }
    
    .contact-icon {
        width: 25px;
        height: 25px;
    }
    
    .contact-icon i {
        font-size: 10px;
    }
    
    .form-control {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* Navigation Responsive Enhancements */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        margin: 5px 0;
        border-radius: 25px;
    }
    
    .custom-navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 575px) {
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        font-size: 14px;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
}

/* Footer Separator Responsive */
@media (max-width: 768px) {
    .footer-separator {
        padding: 30px 0;
    }
    
    .separator-icon {
        width: 50px;
        height: 50px;
        margin: 0 15px;
    }
    
    .separator-icon i {
        font-size: 20px;
    }
    
    .separator-line {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .footer-separator {
        padding: 20px 0;
    }
    
    .separator-icon {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
    
    .separator-icon i {
        font-size: 16px;
    }
    
    .separator-line {
        max-width: 100px;
    }
}

/* Footer Responsive Enhancements */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-section h5 {
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-section h5 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-logo {
        height: 30px !important;
    }
    
    .business-details {
        padding: 12px;
        margin-top: 15px;
    }
    
    .business-details p {
        font-size: 13px;
    }
}

/* Service Cards Responsive */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-card .card-body {
        padding: 20px;
    }
    
    .service-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .service-card {
        margin-bottom: 15px;
    }
    
    .service-card .card-body {
        padding: 15px;
    }
    
    .service-card h5 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 14px;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-buttons {
        margin-top: 30px;
    }
}

/* Map Legend Responsive */
@media (max-width: 768px) {
    .map-legend {
        padding: 15px !important;
    }
    
    .map-legend .d-flex {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .map-legend {
        padding: 10px !important;
    }
    
    .map-legend small {
        font-size: 12px;
    }
    
    .legend-color {
        width: 12px !important;
        height: 12px !important;
    }
}

/* Language Switcher Styles */
.language-switcher .dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.language-switcher .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 10px;
}

.language-switcher .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 10px;
}

.language-switcher .dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateX(5px);
}

.language-switcher .dropdown-item img {
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-switcher .flag-icon {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.language-switcher .flag-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Language Notification */
.language-notification {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer Separator */
.footer-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    position: relative;
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    max-width: 200px;
}

.separator-icon {
    margin: 0 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(10, 91, 105, 0.3);
    transition: all 0.3s ease;
}

.separator-icon i {
    color: var(--white);
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.separator-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(10, 91, 105, 0.4);
}

/* Footer Custom Styling */
.footer-custom {
    background: #000000 !important;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-color);
    margin-top: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(19, 126, 144, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 91, 105, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer-custom .container {
    position: relative;
    z-index: 2;
}

/* Footer Text Styling - Ensure all text is white */
.footer-custom,
.footer-custom h4,
.footer-custom h5,
.footer-custom p,
.footer-custom .text-light-emphasis,
.footer-custom .text-muted,
.footer-custom a {
    color: #ffffff !important;
}

.footer-custom a:hover {
    color: var(--accent-color) !important;
}

/* Footer Logo Styling */
.footer-logo {
    transition: all 0.3s ease;
    border-radius: 5px;
}

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

/* Business Details Styling */
.footer-custom .business-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid var(--accent-color);
}

.footer-custom .business-details p {
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff !important;
}

.footer-custom .business-details i {
    color: var(--accent-color);
    font-size: 16px;
}

.footer-custom .business-details strong {
    color: #ffffff !important;
    font-weight: 600;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    font-family: 'Inter', sans-serif;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Bootstrap Enhancements */
.card {
    transition: all 0.3s ease;
}

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

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Text gradient utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background gradient utilities - Cu strategia de culori aplicată */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--light-bg), var(--white)) !important;
}

/* Improved Icons Colors - Cu strategia de culori aplicată */
.text-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(10, 91, 105, 0.2));
}

/* Hero section icons */
.hero-buttons .btn i {
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-buttons .btn-outline-primary i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation icons */
.navbar-nav .nav-link i {
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.navbar-nav .nav-link:hover i,
.navbar-nav .nav-link.active i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact section icons */
.contact-icon i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(10, 91, 105, 0.2));
}

/* Footer icons */
.footer-section i {
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Social links icons */
.social-links i {
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.social-links a:hover i {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button icons */
.btn i {
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-outline-primary i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-outline-primary:hover i {
    background: linear-gradient(135deg, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Map wrapper keeps a nice ratio and grows with width */
.romania-map{
  aspect-ratio: 4 / 3;          /* tweak to 16/10 or 1/1 if you prefer */
  width: 100%;
  max-height: 70vh;             /* keep it from getting too tall */
}

/* Make injected SVG fill the wrapper */
.romania-map svg{
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(0) scale(1);
  transform-origin: center;
  object-fit: cover;
  padding-top: 5%;
  padding-left: 8%;
}

/* Optional: tooltip positioning if it overflows */
.tooltip{
  position: fixed; /* avoids clipping within the card */
}

/* WhatsApp Contact Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

.whatsapp-text {
    display: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
    display: inline;
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .whatsapp-btn i {
        font-size: 16px;
    }
}


#repair-form .card {
    transition: all 0.4s ease;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

#repair-form .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10, 91, 105, 0.15);
}

#repair-form .section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

#repair-form .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

#repair-form .form-section {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 246, 247, 0.9));
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

#repair-form .form-section:hover {
    box-shadow: 0 5px 20px rgba(10, 91, 105, 0.1);
    transform: translateX(5px);
}

#repair-form .form-control,
#repair-form .form-select {
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: var(--white);
    font-size: 15px;
}

#repair-form .form-control:focus,
#repair-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 91, 105, 0.15);
    transform: translateY(-2px);
    background: var(--white);
}

#repair-form .form-control:hover,
#repair-form .form-select:hover {
    border-color: var(--accent-color);
}

#repair-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

#repair-form .form-label sup {
    color: #dc3545;
    font-size: 12px;
}

#repair-form .form-text {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 5px;
}

#repair-form .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    margin-top: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#repair-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#repair-form .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(10, 91, 105, 0.25);
}

#repair-form .form-check-label {
    margin-left: 10px;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
}

#repair-form .form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

#repair-form .form-check-label a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

#repair-form .invalid-feedback {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

#repair-form .was-validated .form-control:invalid,
#repair-form .was-validated .form-select:invalid,
#repair-form .was-validated .form-check-input:invalid {
    border-color: #dc3545;
}

#repair-form .was-validated .form-control:invalid ~ .invalid-feedback,
#repair-form .was-validated .form-select:invalid ~ .invalid-feedback,
#repair-form .was-validated .form-check-input:invalid ~ .invalid-feedback {
    display: block;
}

#repair-form .was-validated .form-control:valid,
#repair-form .was-validated .form-select:valid,
#repair-form .was-validated .form-check-input:valid {
    border-color: #28a745;
}

#repair-form .form-actions {
    padding-top: 20px;
    border-top: 2px solid #E5E7EB;
}

#repair-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10, 91, 105, 0.3);
    position: relative;
    overflow: hidden;
}

#repair-form .btn-primary::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;
}

#repair-form .btn-primary:hover::before {
    left: 100%;
}

#repair-form .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(10, 91, 105, 0.4);
}

#repair-form .btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

#repair-form .btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    border-radius: 10px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

#repair-form .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

#repair-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

/* Responsive Design for Repair Form */
@media (max-width: 768px) {
    #repair-form .form-section {
        padding: 20px;
    }
    
    #repair-form .section-subtitle {
        font-size: 1.3rem;
    }
    
    #repair-form .form-actions {
        flex-direction: column;
        gap: 15px !important;
    }
    
    #repair-form .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    #repair-form .form-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    #repair-form .section-subtitle {
        font-size: 1.2rem;
    }
    
    #repair-form .form-control,
    #repair-form .form-select {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    #repair-form .btn-primary,
    #repair-form .btn-outline-secondary {
        padding: 12px 30px;
        font-size: 14px;
    }
}
