/* STRUCTURE */

body {
  margin-top:2rem;
}
#bodycontainer{
    padding-left: 0px;
    padding-right: 0px;
    margin-top:90px;
}

#navbarHeader{
    background-color:rgb(64,51, 34); 
}

#navbarNav{
    margin-left:-15px;
}

#contattaci{
    margin-top: 18px;
}
#imaginJumbatron{
    padding-right: 20px;
    padding-bottom: 2px;
}

.img-fluid{
    min-height: 180px;
}
.albumrow {
        margin-left: -11px;
    margin-right: -8px;
}
.albumbox {

    padding-left: 10px;
    padding-right: 7px;


}

/* MODERN NAVBAR STYLES */
.modern-navbar {
    background: linear-gradient(135deg, rgb(64,51,34) 0%, rgb(84,71,54) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(243, 156, 18, 0.3);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.modern-navbar.scrolled {
    background: linear-gradient(135deg, rgba(64,51,34,0.96) 0%, rgba(84,71,54,0.96) 100%);
    padding: 0.5rem 0;
    box-shadow: 0 6px 35px rgba(0,0,0,0.2);
    border-bottom-color: rgba(243, 156, 18, 0.5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #f39c12 !important;
    transform: scale(1.05);
}

.navbar-logo {
    height: 85px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

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

@media (max-width: 991px) {
    .navbar-logo {
        height: 72px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 65px;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.15rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link:hover {
    color: #f39c12 !important;
    background: rgba(243, 156, 18, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover:before {
    width: 85%;
}

.navbar-nav .nav-link.active {
    color: #f39c12 !important;
    background: rgba(243, 156, 18, 0.1);
}

.navbar-nav .nav-link.active:before {
    width: 85%;
}

.btn-contact {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-contact: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.6s ease;
}

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

.btn-contact:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.5);
}

/* MODERN MOBILE TOGGLE */
.modern-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 30px;
    height: 30px;
}

.modern-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.modern-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.modern-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* NAVBAR SUBTITLE STYLES */
.navbar-subtitle {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.subtitle-text {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.subtitle-text:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f39c12, #e67e22, #d35400, #f39c12);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 25px;
    animation: gradientShift 3s ease infinite;
}

.subtitle-text:after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 23px;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
   
.carousel-item .img-fluid { 
    width:100%; 
    /* height:400px;  */
    max-height: 370px;
}

.container{
padding-left: 3px;
padding-right: 3px;

}

/* MOBILE MENU STYLES */
.mobile-menu {
    background: linear-gradient(135deg, rgba(64,51,34,0.98) 0%, rgba(84,71,54,0.98) 100%);
    border-radius: 15px;
    margin: 1rem 0;
    padding: 1rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(243, 156, 18, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.mobile-nav-item:hover {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    text-decoration: none;
    transform: translateX(5px);
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.2);
}

.nav-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-nav-item:hover .nav-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.nav-text {
    font-size: 0.95rem;
    font-weight: 600;
    flex-grow: 1;
    letter-spacing: 0.3px;
}

.nav-arrow {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.mobile-nav-item:hover .nav-arrow {
    color: #f39c12;
    transform: translateX(3px);
}

.mobile-cta {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
}

.btn-contact-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 3px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-contact-mobile: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.6s ease;
}

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

.btn-contact-mobile:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* RESPONSIVE NAVBAR */
@media (max-width: 991px) {
    .modern-navbar .container {
        padding: 0 1rem;
    }
    
    .modern-navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .mobile-menu {
        margin: 0.5rem 0;
        padding: 0.75rem;
        border-radius: 12px;
    }
    
    .mobile-nav-item {
        padding: 0.6rem 0.75rem;
    }
    
    .nav-icon {
        width: 30px;
        height: 30px;
        margin-right: 0.75rem;
        font-size: 1rem;
    }
    
    .nav-text {
        font-size: 0.85rem;
    }
    
    .nav-arrow {
        font-size: 1rem;
    }
    
    .btn-contact-mobile {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
    
    /* SWARM RECOVERY RESPONSIVE */
    .swarm-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .swarm-cta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .swarm-hero-image {
        width: 80px;
        height: 80px;
    }
    
    /* LOCATION RESPONSIVE */
    .location-hero {
        min-height: auto;
    }
    
    .location-overlay {
        padding: 2rem 0;
    }
    
    .location-title {
        font-size: 2rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .btn-location-primary,
    .btn-location-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .map-frame iframe {
        height: 300px;
    }
}

.boxheader{
    margin-left:2px;
}
.boxheader a {
  position: relative;
  left: 0px;
  top: -120px; 
}

.carousel-inner > .item > img {
  min-width: 100%;
  width: 100%;
}

/* UNIFIED SECTION STYLES */

.content-section {
    margin-bottom: 2rem;
}

.section-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 2.5rem;
    transition: box-shadow 0.3s ease;
}

.section-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.section-content {
    width: 100%;
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 1rem;
}

.section-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.content-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.honey-name, .breed-name, .info-subtitle {
    color: #e67e22;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.honey-description, .apiary-content, .swarm-info {
    line-height: 1.7;
}

.honey-image, .apiary-image, .swarm-image {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.honey-image:hover, .apiary-image:hover, .swarm-image:hover {
    transform: scale(1.02);
}

/* FLOATING SOCIAL WIDGET STYLES */
.social-widget-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        right: -80px;
        opacity: 0;
    }
    to {
        right: 20px;
        opacity: 1;
    }
}

.social-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #403322;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    overflow: hidden;
}

.social-float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(64, 51, 34, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-float-btn::after {
    content: '';
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent rgba(64, 51, 34, 0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-float-btn:hover::before,
.social-float-btn:hover::after {
    opacity: 1;
}

.social-float-btn:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.social-float-btn.facebook-float {
    background: #ffffff;
    color: #1877f2;
}

.social-float-btn.facebook-float:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.social-float-btn.instagram-float {
    background: #ffffff;
    color: #E1306C;
}

.social-float-btn.instagram-float:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: #e6683c;
}

.social-float-btn i {
    font-size: 1.4rem;
    z-index: 1;
}

/* Pulse animation for attention */
.social-float-btn::before {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(243, 156, 18, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .social-widget-floating {
        right: 15px;
        gap: 10px;
    }
    
    .social-float-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-float-btn i {
        font-size: 1.2rem;
    }
    
    .social-float-btn::before,
    .social-float-btn::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .social-widget-floating {
        right: 10px;
        bottom: 80px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 8px;
    }
    
    .social-float-btn {
        width: 42px;
        height: 42px;
    }
    
    .social-float-btn i {
        font-size: 1.1rem;
    }
    
    .social-float-btn:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

/* CONTACT FORM STYLES */
.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #f39c12;
}

.contact-card .section-header {
    border-bottom-color: #e67e22;
}

.contact-form-section .form-label {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.contact-form-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form-section .form-control:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
    background: #ffffff;
}

/* FORM VALIDATION STYLES */
.contact-form-section .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.04.005a.615.615 0 0 0 .372-.062l3.93-2.94c.146-.097.168-.298.05-.426l-.02-.022a.365.365 0 0 0-.47-.043l-3.41 2.551-1.29-1.297a.365.365 0 0 0-.522.004l-.02.022a.3.3 0 0 0 .004.426l1.764 1.782'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-form-section .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6l.4-.6.4.6'/%3e%3cpath d='M6 8a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.contact-form-section .form-control.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-form-section .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form-section .valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

.contact-form-section .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 500;
}

/* FORM LABEL VALIDATION FEEDBACK */
.contact-form-section .form-group:has(.is-valid) .form-label {
    color: #28a745;
}

.contact-form-section .form-group:has(.is-invalid) .form-label {
    color: #dc3545;
}

.contact-form-section .form-group:has(.is-valid) .form-label i {
    color: #28a745;
}

.contact-form-section .form-group:has(.is-invalid) .form-label i {
    color: #dc3545;
}

/* ANIMATION FOR VALIDATION FEEDBACK */
.contact-form-section .form-control {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-image 0.15s ease-in-out;
}

.contact-form-section .invalid-feedback,
.contact-form-section .valid-feedback {
    animation: fadeInUp 0.3s ease-in-out;
}

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

.contact-form-section .btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-form-section .btn-warning:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.contact-form-section .invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form-section .alert {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* LOCATION INFO STYLES */
.location-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #17a2b8;
}

.location-card .section-header {
    border-bottom-color: #17a2b8;
}

.location-info .info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.location-info .info-item:last-child {
    border-bottom: none;
}

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

.location-info .info-content {
    color: #495057;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.location-info .btn-warning {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.location-info .btn-warning:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.location-info .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f9ff 100%);
    border-left: 4px solid #17a2b8;
    color: #2c3e50;
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    transform: scale(1.02);
}

/* SWARM RECOVERY COMPACT STYLES */
.swarm-compact {
    max-width: 100%;
}

.swarm-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.swarm-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

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

.swarm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.swarm-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.swarm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #f39c12;
}

.swarm-card.highlight {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.swarm-card.highlight:hover {
    border-color: #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
}

.swarm-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.swarm-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.swarm-card p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.swarm-cta {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    color: white;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-swarm-contact {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-swarm-contact:hover {
    background: white;
    color: #f39c12;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-image {
    position: relative;
}

.swarm-hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* LOCATION UNIQUE STYLES */
.location-unique {
    margin: 3rem 0;
    border-radius: 0;
}

.location-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.location-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.location-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(243, 156, 18, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.badge-text {
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.detail-content h5 {
    color: #f39c12;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-location-primary,
.btn-location-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-location-primary {
    background: #f39c12;
    color: white;
    border: 2px solid #f39c12;
}

.btn-location-primary:hover {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-location-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-location-secondary:hover {
    background: white;
    color: #2c3e50;
    text-decoration: none;
    transform: translateY(-2px);
}

.location-map-container {
    position: relative;
}

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.map-overlay-pin {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.pin-marker {
    font-size: 2rem;
    background: #f39c12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(243, 156, 18, 0.4);
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* HONEY PRODUCTION STYLES */
.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

.honey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.honey-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.millefiori-card {
    border-color: #8b4513;
}

.millefiori-card:hover {
    border-color: #8b4513;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.2);
}

.acacia-card {
    border-color: #ffd700;
}

.acacia-card:hover {
    border-color: #ffd700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
}

.honey-card-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.honey-card-image img {
    max-height: 140px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.honey-card:hover .honey-card-image img {
    transform: scale(1.1);
}

.honey-badge {
    position: absolute;
    top: 15px;
    right: 15px;
}

.honey-badge .badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.honey-card-content {
    padding: 1.5rem;
}

.honey-title {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.honey-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-tag {
    background: #f8f9fa;
    color: #495057;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.honey-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .section-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .contact-form-section .btn-warning {
        width: 100%;
        padding: 1rem;
    }
    
    .honey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .honey-card-image {
        height: 150px;
    }
    
    .honey-card-content {
        padding: 1rem;
    }
}

/* NAVBAR SCROLL EFFECT */
@media (min-width: 992px) {
    .modern-navbar.scrolled {
        transform: translateY(-5px);
    }
    
    .navbar-nav .nav-link i {
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover i {
        color: #f39c12;
        transform: scale(1.2);
    }
}

/* COMPACT SWARM RECOVERY SECTION */
.swarm-minimal {
    padding: 1rem 0;
}

.swarm-minimal .section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.swarm-minimal .section-title {
    color: #403322;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.swarm-description {
    margin-bottom: 1rem;
}

.swarm-description p {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.4;
}

.warning-notice {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
    margin-top: 0.75rem;
}

.warning-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.warning-notice p {
    margin: 0;
    color: #856404;
    font-size: 0.8rem;
    line-height: 1.3;
}

.swarm-cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 8px;
    color: white;
}

.cta-text {
    margin: 0;
    font-weight: 600;
}

.btn-emergency {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-emergency:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.swarm-image-hero {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swarm-image-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.swarm-image-featured {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.swarm-image-hero:hover .swarm-image-featured {
    transform: scale(1.05);
}

/* ALTERNATIVA GRAFICA - Sidebar Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(243, 156, 18, 0.95) 0%, 
        rgba(64, 51, 34, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(3px);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.swarm-image-hero:hover .image-overlay {
    width: 75%;
    padding: 1.5rem;
}

.overlay-content {
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease 0.2s;
}

.swarm-image-hero:hover .overlay-content {
    opacity: 1;
    transform: translateX(0);
}

.main-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #403322;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 1.2rem;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.overlay-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: none;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.swarm-content-wrapper {
    padding-left: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* NEWSPAPER PRESS SECTION */
.press-section-newspaper {
    background: #f8f6f0;
    border: 2px dashed #d6c7a8;
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newspaper-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d6c7a8;
}

.newspaper-icon {
    background: #403322;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.newspaper-title h4 {
    color: #403322;
    font-weight: 800;
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newspaper-subtitle {
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
}

.newspaper-clipping {
    position: relative;
    background: linear-gradient(145deg, #fff, #fafafa);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.75rem;
    box-shadow: 
        0 2px 4px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.newspaper-clipping:hover {
    transform: rotate(0deg);
}

.clipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.newspaper-name {
    font-weight: 700;
    color: #403322;
    font-size: 0.8rem;
}

.publication-date {
    background: #f39c12;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-headline {
    color: #2c3e50;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    border-left: 3px solid #f39c12;
    padding-left: 0.5rem;
}

.article-snippet {
    color: #555;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.read-full-article {
    color: #403322;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.read-full-article:hover {
    color: #f39c12;
    text-decoration: none;
}

.clipping-corner {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-top: 15px solid #f39c12;
}

.clipping-corner::after {
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 15px solid #fff;
    border-top: 15px solid transparent;
}

/* ENHANCED LOCATION SECTION */
.location-enhanced {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.location-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 50%, #ffeaa7 100%);
    opacity: 0.8;
}

.bg-honeycomb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(243, 156, 18, 0.05) 0%, transparent 30%);
    background-size: 400px 400px, 300px 300px, 200px 200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    50% { background-position: 100% 50%, 0% 50%, 25% 75%; }
}

.location-enhanced .container {
    position: relative;
    z-index: 2;
}

.location-enhanced .section-title {
    color: #403322;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #8d6e63;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0;
}

.location-info-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(64, 51, 34, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 15px;
    border-left: 5px solid #f39c12;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-left-color: #e67e22;
}

.info-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.info-content h4 {
    color: #403322;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #555;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.phone-number {
    color: #f39c12 !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: #e67e22 !important;
    text-decoration: none;
    transform: scale(1.05);
}

.info-content small {
    color: #8d6e63;
    font-size: 0.9rem;
    font-style: italic;
}

.visit-cta {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.visit-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.cta-text h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.btn-directions-enhanced {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-directions-enhanced:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.map-container-enhanced {
    position: relative;
}

.map-frame {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(64, 51, 34, 0.15);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.map-frame iframe {
    border-radius: 15px;
    width: 100%;
    height: 280px;
}

/* ENHANCED LOCATION RESPONSIVE */
@media (max-width: 768px) {
    .location-enhanced {
        padding: 3rem 0;
    }
    
    .location-enhanced .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .location-info-enhanced {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .visit-cta {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-directions-enhanced {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .map-frame {
        padding: 0.75rem;
    }
    
    .map-frame iframe {
        height: 250px;
    }
}

/* LOCATION SECTION - COMPACT LIKE CONTACT FORM */
.location-info-compact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.location-item-compact {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    line-height: 1.5;
}

.location-item-compact:last-child {
    border-bottom: none;
}

.phone-link {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

.contact-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: #ff8f00;
    text-decoration: underline;
}

/* RESPONSIVE FOR COMPACT SECTIONS */
@media (max-width: 768px) {
    .swarm-cta-inline {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .swarm-content-wrapper {
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .swarm-image-featured {
        height: 220px;
    }
    
    .image-overlay {
        width: 100% !important;
        height: auto;
        position: relative;
        background: linear-gradient(
            90deg, 
            rgba(243, 156, 18, 0.9) 0%, 
            rgba(64, 51, 34, 0.9) 100%
        );
        padding: 1rem !important;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .overlay-content {
        opacity: 1 !important;
        transform: none !important;
        text-align: center;
    }
    
    .overlay-features {
        gap: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        flex: 0 1 auto;
    }
    
    .main-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        margin-bottom: 0.8rem;
    }
    
    .press-section-newspaper {
        padding: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .newspaper-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .newspaper-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .newspaper-clipping {
        transform: rotate(0deg);
    }
    
    .location-actions-compact {
        justify-content: center;
    }
    
    .location-actions-compact .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .summary-item {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* UNIFORM MISSION CARDS */
.mission-section-uniform {
    background: linear-gradient(135deg, #fff8e1 0%, #f8f9fa 100%);
    position: relative;
}

.mission-section-uniform::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64, 51, 34, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.uniform-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(64, 51, 34, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid rgba(243, 156, 18, 0.1);
    position: relative;
}

.uniform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(64, 51, 34, 0.15);
    border-color: rgba(243, 156, 18, 0.3);
}

.card-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.uniform-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.uniform-card:hover .uniform-card-img {
    transform: scale(1.05);
}


.uniform-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.uniform-card-title {
    color: #403322;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-number-box {
    background: linear-gradient(135deg, #f39c12, #ff6f00);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.uniform-card:hover .title-number-box {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.title-text {
    color: #403322;
    font-weight: 600;
}

.highlight-word {
    color: #f39c12;
    font-weight: 700;
}

.uniform-card-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.uniform-card-text p {
    margin-bottom: 1rem;
}

.uniform-card-text p:last-child {
    margin-bottom: 0;
}

.uniform-card-text strong {
    color: #403322;
    font-weight: 600;
}

/* UNIFORM CARDS RESPONSIVE */
@media (max-width: 768px) {
    .uniform-card-body {
        padding: 1.5rem;
    }
    
    .uniform-card-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .title-number-box {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
    
    .title-text {
        font-size: 1.1rem;
    }
    
    
    .card-image-container {
        height: 180px;
    }
    
    .uniform-card-text {
        font-size: 0.9rem;
    }
}