/* ===== CUSTOM VARIABLES ===== */


/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.bg-primary {
    background-color: var(--primary-color) !important;
}

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

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.container {
    max-width: 1200px;
}

/* ===== TOP HEADER STYLES ===== */
.top-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header .container {
    position: relative;
}

.top-header i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

/* Top Header Links */
.top-header a {
    transition: var(--transition);
    display: inline-block;
}

.top-header a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-1px);
}

/* Language Selector */
.language-selector a {
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 2px 4px;
    border-radius: 3px;
}

.language-selector a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.language-selector a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
    font-weight: 600;
}

/* ===== MAIN HEADER STYLES ===== */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.main-header .navbar {
    min-height: 80px;
}

.main-header.scrolled {
    box-shadow: var(--box-shadow);
}

.main-header.scrolled .navbar {
    min-height: 70px;
}

/* Logo Styles */
.navbar-brand {
    transition: var(--transition);
    padding: 0;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation Styles */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: var(--transition);
    position: relative;
    border-radius: 25px;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: transparent;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
    font-weight: 600;
}

.navbar-nav .dropdown-toggle.active {
    color: var(--text-dark);
    background-color: transparent;
    font-weight: 500;
}

/* Dropdown Styles */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.nav-item.dropdown:hover .nav-link {
    color: var(--primary-color);
    background-color: transparent;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Toggle Button */
.navbar-toggler {
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.navbar-toggler:hover {
    background-color: var(--accent-color);
}

/* CTA Button */
.btn-primary.btn-sm {
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    border-radius: 25px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* ===== MOBILE OFFCANVAS MENU ===== */
.offcanvas {
    width: 320px !important;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
}

.offcanvas-header {
    padding: 1.5rem 1.25rem 1rem;
    background-color: var(--white);
}

.offcanvas-title {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.offcanvas-body {
    padding: 1.25rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

/* Mobile Contact Info */
.mobile-contact-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(255,255,255,0.8) 100%);
    border: 1px solid rgba(196, 30, 58, 0.1);
}

.mobile-contact-info a {
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.mobile-contact-info a:hover {
    background-color: rgba(196, 30, 58, 0.05);
    transform: translateX(3px);
}

/* Mobile Navigation */
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background-color: var(--accent-color);
    border-color: rgba(196, 30, 58, 0.1);
    transform: translateX(3px);
}

.mobile-nav-link.active {
    color: var(--primary-color);
    background-color: var(--accent-color);
    border-color: rgba(196, 30, 58, 0.2);
    font-weight: 600;
}



/* Mobile Dropdown */
.mobile-dropdown .dropdown-toggle::after {
    display: none;
}

.mobile-submenu {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    padding: 0.5rem;
}

.mobile-submenu-link {
    display: block;
    padding: 0.625rem 0.75rem;
    text-decoration: none;
    color: var(--text-muted);
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.mobile-submenu-link:hover {
    color: var(--primary-color);
    background-color: var(--white);
    transform: translateX(2px);
}



/* Mobile CTA */
.mobile-cta .btn {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.mobile-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

/* Mobile Language Selector */
.mobile-language .btn {
    font-size: 0.8rem;
    font-weight: 600;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    min-width: 45px;
}

.mobile-language .btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.mobile-language .btn:hover:not(.active) {
    background-color: var(--accent-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-language .d-flex {
    justify-content: center;
    gap: 0.5rem;
}

.mobile-language .flex-fill {
    flex: 0 1 auto;
    max-width: 50px;
}

/* Custom Scrollbar for Offcanvas */
.offcanvas-body::-webkit-scrollbar {
    width: 4px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991.98px) {
    .main-header .navbar {
        min-height: 70px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .main-header .navbar {
        min-height: 60px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

/* Footer Brand */
.footer-brand {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.footer-company-name {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.2);
}

/* Footer Titles */
.footer-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.2px;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    align-items: start;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.contact-value a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.contact-value a:hover {
    color: var(--primary-color);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}

.footer-copyright,
.footer-credentials {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.footer-credentials {
    font-weight: 500;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .footer-links-wrapper .row > div:first-child {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer .py-5 {
        padding: 3rem 0 !important;
    }
    
    .footer-brand {
        text-align: center;
        border-bottom: none;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .contact-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-label {
        margin-bottom: 0.25rem;
    }
    
    .footer-links-wrapper {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom .col-md-6:last-child {
        text-align: center !important;
        margin-top: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .footer-links-wrapper .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .footer-links-wrapper .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    z-index: 1050;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text strong {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.25rem;
}

.cookie-policy-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 0.25rem;
}

.cookie-policy-link:hover {
    color: white;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: 80px;
}

.cookie-actions .btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.cookie-actions .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.cookie-actions .btn-light {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
}

.cookie-actions .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-1px);
}



/* ===== COOKIE CONSENT RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-text {
        order: 1;
    }
    
    .cookie-actions {
        order: 2;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cookie-consent {
        padding: 1.25rem 0;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .cookie-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    padding: 0;
    margin-top: 0;
}

.hero-slider .container {
    padding: 0;
}

#heroCarousel {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.hero-slide {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8) 0%, rgba(196, 30, 58, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.desktop-bg {
    display: block;
}

.mobile-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 2rem;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    font-size: 1rem;
    text-transform: none;
    transition: all 0.3s ease;
    border-width: 2px;
    position: relative;
    z-index: 5;
}

.hero-actions .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.hero-actions .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.hero-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-light:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ===== CAROUSEL CUSTOMIZATION ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
    bottom: 2rem;
    right: 6rem;
    top: auto;
    left: auto;
    transform: none;
}

.carousel-control-next {
    bottom: 2rem;
    right: 2rem;
    top: auto;
    left: auto;
    transform: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
    filter: invert(0.3) brightness(0);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) brightness(0);
}

/* ===== HERO SLIDER RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        bottom: 1.5rem;
        right: 5rem;
    }
    
    .carousel-control-next {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    #heroCarousel {
        margin: 1rem 0;
        border-radius: 0;
    }
    
    .hero-slide {
        height: 600px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .desktop-bg {
        display: none;
    }
    
    .mobile-bg {
        display: block;
    }
    
    .hero-content {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        bottom: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-60px);
    }
    
    .carousel-control-next {
        bottom: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(25px);
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        height: 550px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        text-align: center;
    }
    
    .hero-actions {
        align-items: center;
        justify-content: center;
    }
    
    .hero-actions .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 32px;
        height: 32px;
    }
    
    .carousel-control-prev {
        bottom: 0.75rem;
        left: 50%;
        right: auto;
        transform: translateX(-55px);
    }
    
    .carousel-control-next {
        bottom: 0.75rem;
        left: 50%;
        right: auto;
        transform: translateX(23px);
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 14px;
        height: 14px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background-color: #fafafa;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.about-content {
    padding-right: 2rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2c3e50;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.1);
}

.highlight-item i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.highlight-item span {
    font-size: 1rem;
    color: #2c3e50;
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
}

.about-actions .btn-primary {
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
}

.about-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.about-actions .btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.about-actions .btn-secondary:hover {
    background-color: #B91C3C;
    border-color: #B91C3C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
    color: white;
}

/* ===== ABOUT IMAGE ===== */
.about-image {
    position: relative;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.about-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
    transform: rotate(5deg);
    transition: var(--transition);
}

.about-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* ===== ABOUT SECTION RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .about-section {
        padding: 4rem 0;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-highlights {
        justify-content: center;
    }
    
    .about-actions {
        justify-content: center;
    }
    
    .about-image {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .about-highlights {
        margin: 1.5rem 0;
    }
    
    .highlight-item {
        justify-content: center;
        text-align: center;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.75rem;
    }
    
    .badge-year {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .about-content {
        padding: 0 0.5rem;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 0.5rem 0.75rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    .about-image img {
        height: 250px;
    }
}

/* ===== STATISTICS SECTION ===== */
.statistics-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.statistics-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.statistics-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

.stat-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.stat-description {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

.counter.counting {
    color: var(--secondary-color);
}

/* ===== STATISTICS RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .statistics-section {
        padding: 2.5rem 0;
    }
    
    .statistics-title {
        font-size: 1.6rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .statistics-section {
        padding: 2rem 0;
    }
    
    .statistics-title {
        font-size: 1.4rem;
    }
    
    .statistics-subtitle {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-plus {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-description {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .statistics-section {
        padding: 1.5rem 0;
    }
    
    .statistics-title {
        font-size: 1.3rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-icon {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-plus {
        font-size: 1rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 4rem 0;
    background-color: white;
}

.services-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.services-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.service-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    align-self: flex-start;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.service-link:hover::after {
    width: 100%;
}

/* ===== SERVICES RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 1.75rem 1.25rem;
    }
    
    .service-image {
        height: 180px;
        margin-bottom: 1.25rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 2.5rem 0;
    }
    
    .services-title {
        font-size: 1.6rem;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-image {
        height: 160px;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .service-link {
        align-self: center;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 2rem 0;
    }
    
    .services-title {
        font-size: 1.4rem;
    }
    
    .service-item {
        padding: 1.25rem 0.75rem;
    }
    
    .service-image {
        height: 140px;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .service-link {
        font-size: 0.85rem;
    }
}

/* ===== LICENSE SECTION ===== */
.license-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.license-content {
    padding-right: 1.5rem;
}

.license-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.license-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1.5rem 0;
}

.license-images {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.overlay-image {
    position: absolute;
    top: -20px;
    right: -20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.overlay-image img {
    width: 180px;
    height: 140px;
    object-fit: cover;
}

.services-checklist {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.checklist-item:not(:last-child) {
    border-bottom: 1px solid #f1f3f4;
}

.checklist-item:hover {
    background-color: #f8f9fa;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 6px;
}

.checklist-item i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.checklist-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e50;
}

/* ===== LICENSE RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .license-section {
        padding: 2.5rem 0;
    }
    
    .license-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .license-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .license-description {
        margin-bottom: 1.25rem;
    }
    
    .main-image img {
        height: 320px;
    }
    
    .overlay-image img {
        width: 160px;
        height: 125px;
    }
    
    .services-checklist {
        margin-top: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .license-section {
        padding: 2rem 0;
    }
    
    .license-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .license-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .main-image img {
        height: 280px;
    }
    
    .overlay-image {
        top: -15px;
        right: -15px;
    }
    
    .overlay-image img {
        width: 140px;
        height: 110px;
    }
    
    .checklist-item {
        padding: 0.375rem 0;
    }
    
    .checklist-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .license-section {
        padding: 2rem 0;
    }
    
    .license-title {
        font-size: 1.4rem;
    }
    
    .license-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .main-image img {
        height: 220px;
    }
    
    .overlay-image {
        top: -10px;
        right: -10px;
        border-width: 2px;
    }
    
    .overlay-image img {
        width: 120px;
        height: 95px;
    }
    
    .checklist-item {
        padding: 0.375rem 0;
    }
    
    .checklist-text {
        font-size: 0.8rem;
    }
}

/* ===== REQUEST & VIDEO SECTION ===== */
.request-video-section {
    padding: 4rem 0;
    background-color: white;
}

.video-content {
    padding-right: 2rem;
}

.video-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.video-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-point i {
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-point span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-thumbnail:hover .play-icon {
    background: white;
    transform: scale(1.1);
}

.play-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 3px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== REQUEST FORM ===== */
.request-form-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.request-form .form-label {
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.request-form .form-control,
.request-form .form-select {
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: white;
}

.request-form .form-control:focus,
.request-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.1);
}

.request-form .form-control::placeholder {
    color: #9ca3af;
    font-size: 0.85rem;
}

.form-check-label {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* ===== RECAPTCHA PLACEHOLDER ===== */
.recaptcha-placeholder {
    margin: 1rem 0;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 1rem;
    gap: 1rem;
}

.recaptcha-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.recaptcha-text {
    flex: 1;
}

.recaptcha-text span {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.recaptcha-logo {
    color: #6b7280;
    font-size: 1.2rem;
}

/* ===== FORM RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .request-video-section {
        padding: 3rem 0;
    }
    
    .video-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-highlights {
        align-items: center;
    }
    
    .request-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .request-video-section {
        padding: 2.5rem 0;
    }
    
    .video-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .video-thumbnail img {
        height: 220px;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-icon i {
        font-size: 1.3rem;
    }
    
    .request-form-container {
        padding: 1.25rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .video-highlights {
        gap: 0.5rem;
    }
    
    .highlight-point {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .request-video-section {
        padding: 2rem 0;
    }
    
    .video-title {
        font-size: 1.4rem;
    }
    
    .video-thumbnail img {
        height: 180px;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .play-icon i {
        font-size: 1.1rem;
    }
    
    .request-form-container {
        padding: 1rem;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Page Header Lite */
.page-header-lite {
    padding: 2rem 0 1rem;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.page-title-lite {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
    text-align: left;
}

/* Contact Hero Section */
.contact-hero-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-phone-link,
.contact-email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-phone-link:hover,
.contact-email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-link:hover {
    color: var(--secondary-color);
}

.contact-info-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Contact Form & Map Section */
.contact-form-map-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-subtitle {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    background-color: white;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.1);
}

/* Map Container */
.contact-map-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.contact-map-header {
    padding: 2rem 2rem 1rem;
}

.contact-map-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-map-subtitle {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-map {
    height: 400px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-details {
    padding: 1.5rem 2rem 2rem;
    background: var(--light-gray);
}

.map-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.map-detail-item:last-child {
    margin-bottom: 0;
}

.map-detail-item i {
    font-size: 1.125rem;
    margin-right: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.map-detail-content {
    color: var(--text-muted);
    line-height: 1.5;
}

.map-detail-content strong {
    color: var(--text-dark);
}

/* Office Info Section */
.office-info-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.office-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.office-info-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.office-detail-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.office-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.office-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.office-detail-card:hover .office-detail-icon {
    transform: scale(1.1);
}

.office-detail-icon i {
    font-size: 2rem;
    color: white;
}

.office-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.office-detail-content {
    text-align: left;
}

.office-detail-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.office-detail-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Working Hours */
.working-hours {
    margin-bottom: 1rem;
}

.working-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.working-hour-item:last-child {
    border-bottom: none;
}

.working-day {
    font-weight: 500;
    color: var(--text-dark);
}

.working-time {
    color: var(--text-muted);
    font-weight: 500;
}

/* Emergency Contact */
.emergency-contact {
    margin-bottom: 1rem;
}

.emergency-contact .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

/* Social Media Links */
.contact-social-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-media-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: white;
}

.social-media-link i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.social-media-link span {
    font-weight: 500;
}

.social-media-link.facebook {
    color: #1877f2;
}

.social-media-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-media-link.linkedin {
    color: #0a66c2;
}

.social-media-link.linkedin:hover {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
}

.social-media-link.instagram {
    color: #e4405f;
}

.social-media-link.instagram:hover {
    background: #e4405f;
    color: white;
    border-color: #e4405f;
}

.social-media-link.youtube {
    color: #ff0000;
}

.social-media-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* Office Gallery Section */
.office-gallery-section {
    padding: 5rem 0;
    background-color: white;
}

.office-gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.office-gallery-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.office-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.office-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.office-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay-content span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-map-header {
        padding: 1.5rem;
    }
    
    .map-details {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .page-header-lite {
        padding: 1.5rem 0 0.75rem;
    }
    
    .page-title-lite {
        font-size: 1.75rem;
    }
    
    .contact-hero-section,
    .contact-form-map-section {
        padding: 3rem 0;
    }
    
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-map {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .page-header-lite {
        padding: 1rem 0 0.5rem;
    }
    
    .page-title-lite {
        font-size: 1.5rem;
    }
    
    .contact-hero-section,
    .contact-form-map-section {
        padding: 2rem 0;
    }
    
    .contact-hero-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
    
    .contact-map {
        height: 250px;
    }
}

/* ===== DETAIL PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 0;
}

.page-hero-content {
    color: white;
}

.page-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.page-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
}

/* Page Content */
.page-content {
    padding: 5rem 0;
    background-color: white;
}

.page-main-content {
    background: white;
}

/* Section Titles */
.content-section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Content Text */
.content-text {
    color: var(--text-muted);
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-highlights {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
}

/* FAQ Section */
.page-faq .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.page-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.page-faq .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: none;
}

.page-faq .accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--primary-color);
}

.page-faq .accordion-button:focus {
    border: none;
    box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.1);
}

.page-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C41E3A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.page-faq .accordion-body {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    line-height: 1.6;
}

/* Documents Section */
.documents-grid {
    margin-top: 2rem;
}

.document-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
}

.document-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.document-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.document-content {
    flex: 1;
}

.document-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.document-description {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.document-meta {
    display: flex;
    gap: 1rem;
}

.document-size,
.document-type {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: var(--light-gray);
    color: var(--text-muted);
    font-weight: 500;
}

.document-action {
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Gallery Section */
.gallery-grid {
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.gallery-overlay-content span {
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Modal Enhancements */
.gallery-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    color: var(--text-dark);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    z-index: 10;
    cursor: pointer;
}

.gallery-nav:hover {
    background: rgba(0,0,0,0.9);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-touch-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.gallery-touch-hint:hover {
    opacity: 1;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-thumbnail.active {
    border-color: var(--primary-color);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

#galleryModalImage {
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Sidebar */
.page-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.widget-content {
    color: var(--text-muted);
}

.widget-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Widget actions buttons are styled below */

/* Quick Info */
.quick-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-weight: 500;
    color: var(--text-dark);
}

.info-value {
    color: var(--text-muted);
    font-weight: 500;
}

/* Related Links */
.related-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-weight: 500;
}

.related-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.related-link i {
    transition: var(--transition);
}

.related-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .page-hero-image {
        height: 300px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .content-section-title {
        font-size: 1.75rem;
    }
    
    .page-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .page-content {
        padding: 3rem 0;
    }
    
    .page-hero-image {
        height: 250px;
    }
    
    .page-hero-overlay {
        padding: 1.5rem 0;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section-title {
        font-size: 1.5rem;
    }
    
    .page-faq .accordion-button,
    .page-faq .accordion-body {
        padding: 1rem;
    }
    
    .document-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .document-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .document-action {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .document-action .btn {
        width: 100%;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .page-content {
        padding: 2rem 0;
    }
    
    .page-hero-image {
        height: 200px;
    }
    
    .page-hero-overlay {
        padding: 1rem 0;
    }
    
    .page-hero-title {
        font-size: 1.75rem;
    }
    
    .page-hero-subtitle {
        font-size: 0.875rem;
    }
    
    .content-section-title {
        font-size: 1.25rem;
    }
    
    .content-highlights {
        padding: 1rem;
    }
    
    .page-breadcrumb .breadcrumb {
        padding: 0.25rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

/* ===== SIDEBAR WIDGET BUTTON STYLES ===== */
.widget-actions .btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-width: 2px;
    font-size: 0.9rem;
}

/* İletişime Geç Butonu - Normal (Dolu) */
.widget-actions .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.widget-actions .btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

/* Hemen Ara Butonu - Outline (Boş) */
.widget-actions .btn-outline-primary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.widget-actions .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

/* ===== DOCUMENT ACTION BUTTON STYLES ===== */
.document-action .btn {
    font-weight: 500;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-width: 2px;
    font-size: 0.85rem;
    min-width: 80px;
}

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

.document-action .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(196, 30, 58, 0.2);
}

.document-action .btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

/* Document item hover effect enhancement */
.document-item:hover .document-action .btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

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

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767.98px) {
    .widget-actions .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .document-action .btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
        min-width: 70px;
    }
}

@media (max-width: 575.98px) {
    .widget-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .document-action .btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        min-width: 65px;
    }
}

/* ===== REGIONAL OFFICES STYLES ===== */
.regional-offices {
    margin-bottom: 3rem;
}

.offices-grid {
    margin-top: 2rem;
}

.office-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.office-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.office-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.office-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.office-icon i {
    color: white;
    font-size: 1.25rem;
}

.office-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.office-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.office-content {
    flex: 1;
}

.office-address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.office-address i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.office-address span {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.office-contact {
    margin-bottom: 1.25rem;
}

.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row i {
    width: 16px;
    flex-shrink: 0;
}

.contact-row a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-row a:hover {
    color: var(--primary-color);
}

.office-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.office-actions .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.office-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.office-actions .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.office-actions .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

/* ===== SERVICE AREAS STYLES ===== */
.service-areas {
    margin-bottom: 3rem;
}

.areas-grid {
    margin-top: 2rem;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.area-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.area-title i {
    margin-right: 0.5rem;
}

.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-tag {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.city-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* ===== SIDEBAR ENHANCEMENTS ===== */
.offices-map {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

.offices-map:hover .map-overlay {
    opacity: 1;
}

.offices-map:hover img {
    filter: brightness(0.7);
}

.working-hours {
    margin-bottom: 1rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.hour-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours {
    color: var(--text-muted);
    font-weight: 500;
}

.note {
    background: var(--light-gray);
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
}

/* ===== MAP MODAL STYLES ===== */
.modal-xl .modal-dialog {
    max-width: 90vw;
}

#mapModal .modal-header {
    background: var(--primary-color);
    color: white;
}

#mapModal .modal-header .btn-close {
    filter: invert(1);
}

.map-info {
    width: 100%;
}

.office-details {
    flex: 1;
}

.office-details strong {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.4;
}

.office-details .text-muted {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.map-actions .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

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

.map-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.map-actions .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.map-actions .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
}

.map-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991.98px) {
    .office-card {
        margin-bottom: 1.5rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .office-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .area-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .office-card {
        padding: 1.25rem;
    }
    
    .office-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .office-title h3 {
        font-size: 1rem;
    }
    
    .office-actions .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .area-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .city-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .map-legend {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .map-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .office-details {
        text-align: center;
    }
    
    .map-actions {
        justify-content: center;
    }
    
    .map-actions .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .office-card {
        padding: 1rem;
    }
    
    .office-address {
        padding: 0.5rem;
    }
    
    .contact-row {
        font-size: 0.85rem;
    }
    
    .area-card {
        padding: 1rem;
    }
    
    .city-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .hour-row {
        font-size: 0.8rem;
        padding: 0.375rem 0;
    }
    
    .modal-xl .modal-dialog {
        max-width: 95vw;
        margin: 0.5rem;
    }
    
    .map-info {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .office-details {
        text-align: center;
    }
    
    .map-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .map-actions .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        flex: 1;
        min-width: 120px;
    }
} 