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

html {
    scroll-behavior: smooth;
}

/* ===========================
   BODY - MODERN & DYNAMIC
=========================== */

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    color: #1a2a1a;
    line-height: 1.7;
    margin: 0;
    padding-top: 100px;
    background: #f5f5f5;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ORIGINAL BACKGROUND IMAGE - RESTORED */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../images/salustania.png") center center no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

/* ADDITIONAL OVERLAY FOR DEPTH */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(67, 177, 67, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(67, 177, 67, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* ===========================
   HEADER - GLASS MORPHISM
=========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(67, 177, 67, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-shadow: 0 4px 30px rgba(67, 177, 67, 0.25);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

header:hover {
    background: rgba(67, 177, 67, 0.96);
    box-shadow: 0 4px 40px rgba(67, 177, 67, 0.35);
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* ===========================
   NAVIGATION - ENHANCED
=========================== */
nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #c8e6c9);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* ===========================
   SECTION - SOLID GREEN BORDER - NO MOVEMENT
=========================== */
.section {
    max-width: 1200px;
    margin: 25px auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border-top: 6px solid #43B143;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

/* NO .section:hover - COMPLETELY REMOVED */

/* SECTION HEADINGS WITH SPARKLE ANIMATION */
.section h2 {
    font-size: 38px;
    color: #1a4a1a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* SPARKLE STAR ANIMATION */
.section h2::before {
    content: '✦';
    color: #43B143;
    margin-right: 12px;
    font-size: 32px;
    display: inline-block;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.2) rotate(180deg); }
}

.section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 5px;
    background: linear-gradient(to right, #43B143, #79C679, #a8d5a8);
    border-radius: 3px;
}

.section p {
    font-size: 17px;
    line-height: 2;
    color: #1e2a1e;
    text-align: left;
    margin-bottom: 20px;
}

.section p b {
    color: #2f8f2f;
    font-weight: 700;
}

/* ===========================
   CONTACT INFORMATION - ENHANCED
=========================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-left: 5px solid #43B143;
    border-radius: 14px;
    padding: 30px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(67, 177, 67, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.contact-card h3 {
    color: #1a4a1a;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
}

.contact-card h3::before {
    content: '◆';
    color: #43B143;
    margin-right: 10px;
    font-size: 20px;
}

.contact-card p {
    color: #1e2a1e;
    text-align: left;
    line-height: 2;
    margin-bottom: 18px;
}

.contact-card strong {
    color: #2f8f2f;
}

/* ===========================
   OFFICE ADDRESS + LIVE MAP - ENHANCED
=========================== */

.office-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.office-layout .info-box {
    background: rgba(248, 255, 248, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-left: 5px solid #43B143;
    border-radius: 14px;
    padding: 30px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.office-layout .info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(67, 177, 67, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.office-layout .info-box h3 {
    color: #1a4a1a;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
}

.office-layout .info-box h3::before {
    content: '📍';
    margin-right: 10px;
}

.office-layout .info-box p {
    color: #1e2a1e;
    text-align: left;
    line-height: 2;
    margin-bottom: 10px;
}

.office-layout .info-box p:last-child {
    margin-bottom: 0;
}

.map-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.map-box:hover {
    box-shadow: 0 12px 40px rgba(67, 177, 67, 0.15);
    transform: translateY(-3px);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    display: block;
}

/* ===========================
   FOOTER - MODERN
=========================== */
footer {
    background: linear-gradient(135deg, #1a4a1a, #2f8f2f);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-top: 3px solid rgba(255, 255, 255, 0.1);
}

/* ===========================
   RESPONSIVE
=========================== */

/* TABLETS */
@media (max-width: 992px) {
    body {
        padding-top: 100px;
    }

    header {
        flex-direction: column;
        justify-content: center;
        height: auto;
        padding: 15px 20px;
        gap: 10px;
    }

    .logo img {
        height: 60px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .section {
        margin: 25px 20px;
        padding: 35px;
    }
    
    .section h2 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .office-layout {
        gap: 20px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    body {
        padding-top: 150px;
    }

    header {
        flex-direction: column;
        gap: 8px;
        padding: 12px 20px;
        height: auto;
        min-height: 90px;
    }

    nav {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 13px;
    }

    .section {
        margin: 20px 15px;
        padding: 25px;
        border-top: 6px solid #43B143;
    }

    .section h2 {
        font-size: 28px;
    }

    .section h2::before {
        font-size: 26px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }

    .office-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .office-layout .info-box {
        padding: 25px;
    }

    .map-box iframe {
        min-height: 300px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    body {
        padding-top: 150px;
    }

    .logo img {
        height: 50px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 12px;
    }

    .section {
        padding: 20px;
        border-top: 6px solid #43B143;
    }
    
    .section h2 {
        font-size: 24px;
    }

    .section h2::before {
        font-size: 22px;
    }
    
    .contact-card h3 {
        font-size: 20px;
    }
    
    .office-layout .info-box h3 {
        font-size: 20px;
    }
    
    .map-box iframe {
        min-height: 250px;
    }
}

/* ============================================
   SILENT PROTECTION - FULL PROTECTION
   ============================================ */

/* Allow pointer events on clickable elements */
[onclick] {
    cursor: pointer !important;
}

/* Prevent ALL selection */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Prevent image selection and dragging - but keep pointer events for clickable images */
img {
    -webkit-user-drag: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Only block pointer events on non-interactive images */
img:not([onclick]) {
    pointer-events: none !important;
}

/* Prevent text selection on body */
body {
    -webkit-user-select: none !important;
    user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Disable text selection in ALL text elements */
p, h1, h2, h3, h4, h5, h6, span, div, label, button, a, li, ul, ol, strong, em, b, i {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    cursor: default !important;
}

/* But allow pointer cursor on interactive elements */
button, [onclick] {
    cursor: pointer !important;
}

/* Make selection completely invisible */
::selection {
    background: transparent !important;
    color: inherit !important;
}

::-moz-selection {
    background: transparent !important;
    color: inherit !important;
}

::-webkit-selection {
    background: transparent !important;
    color: inherit !important;
}

/* ============================================
   SILENT PRINT BLOCKING - NO MESSAGES
   ============================================ */

@media print {
    body * {
        display: none !important;
        visibility: hidden !important;
    }
    
    html, body {
        background: white !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body::before {
        display: none !important;
    }
}

.screenshot-warning {
    display: none !important;
}

/* Prevent iframe from being selected */
iframe {
    pointer-events: auto !important;
    -webkit-user-select: none !important;
    user-select: none !important;
}