:root {
	--text: #000;
	--gradient-primary: #667eea;
	--gradient-secondary: #764ba2;
	--gradient-third: #4242B8;
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    
    /* Tła */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
	--bg-th: #f8f9fa;
    
    /* Teksty */
    --text-primary: #2c3e50;
    --text-secondary: #566573;
    --text-muted: #7f8c8d;
	--text-tertiary: #2c3e50;
	--text-four: #1a5276;
    
    /* Obramowania */
    --border-color: #e9ecef;
    --border-light: #f1f2f6;
    
    /* Cienie */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Stopka */
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
    
    /* Karty */
    --card-bg: #ffffff;
    --card-shadow: 0 5px 15px rgba(0,0,0,0.1);
	
	--logo-bg: #2c3e50;
    --logo-text: #ffffff;
}

[data-theme="dark"] {
	
	--text: #fff;
	--gradient-primary: #0A177D;
	--gradient-cecondary: #124C5C;
	--gradient-third: #030326;
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #34495e;
    --accent-color: #e74c3c;
    
    /* Tła */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3d3d3d;
	--bg-th: #101314;
    
    /* Teksty */
    --text-primary: #ecf0f1;
    --text-secondary: #bdc3c7;
    --text-muted: #95a5a6;
	--text-tertiary: #3498db;
	--text-four: #41a7e8;
    
    /* Obramowania */
    --border-color: #404040;
    --border-light: #4a4a4a;
    
    /* Cienie */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
    
    /* Stopka */
    --footer-bg: #0d0d0d;
    --footer-text: #bdc3c7;
    
    /* Karty */
    --card-bg: #2d2d2d;
    --card-shadow: 0 5px 15px rgba(0,0,0,0.3);
	
	--logo-bg: #3498db;
    --logo-text: #1a1a1a;
}

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section {
    background: #34495e;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    width: 150px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Logo dla trybu dziennego */
.logo {
    background-image: url('/images/logo-light.png');
}

/* Logo dla trybu nocnego */
[data-theme="dark"] .logo {
    background-image: url('/images/logo-dark.png');
}

/* --- Mobile Menu --- */
.nav-menu {
    display: flex;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}

/* Animacja hamburgera na X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
	font-size: 1.2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Kontrolki header */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Przełącznik motywu */
.theme-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    width: 60px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
}

.theme-icon {
    position: absolute;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.theme-icon.sun {
    left: 8px;
    opacity: 1;
}

.theme-icon.moon {
    right: 8px;
    opacity: 0.5;
}

[data-theme="dark"] .theme-icon.sun {
    opacity: 0.5;
}

[data-theme="dark"] .theme-icon.moon {
    opacity: 1;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    left: 4px;
}

[data-theme="dark"] .theme-toggle::before {
    left: calc(100% - 28px);
}

/* Przełącznik języków */
.language-switcher select {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 12px;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

a { text-decoration: none; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-image: url('../images/back-home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efekt parallax */
    position: relative;
}

/* Overlay dla lepszej czytelności tekstu */
.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.9) 0%,
        rgba(248,249,250,0.8) 100%
    );
    z-index: 1;
}

[data-theme="dark"] .features::before {
    background: linear-gradient(
        135deg,
        rgba(26,26,26,0.9) 0%,
        rgba(45,45,45,0.8) 100%
    );
}

.features .container {
    position: relative;
    z-index: 2;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
	color:  var(--text-tertiary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
}

/* Cookie Consent Banner */
.cookie {
	margin-top: 40vh;
	margin-bottom: 100px;
    position: center;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
 }

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    margin-bottom: 5px;
    color: #3498db;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-policy-link {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.accept-btn {
    background: #27ae60;
    color: white;
}

.accept-btn:hover {
    background: #219a52;
}

.reject-btn {
    background: #e74c3c;
    color: white;
}

.reject-btn:hover {
    background: #c0392b;
}

.customize-btn {
    background: transparent;
    color: white;
    border: 1px solid #3498db !important;
}

.customize-btn:hover {
    background: #3498db;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    animation: fadeIn 0.3s;
}

.cookie-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
    animation: slideUp 0.3s;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.close-modal:hover {
    color: #34495e;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Cookie Options */
.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-option-text strong {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.cookie-option-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #27ae60;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #95a5a6;
    cursor: not-allowed;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

a.disabled {
  /*  pointer-events: none;  Wyłącza kliknięcie */
    cursor: not-allowed;  /* Pokazuje zakazany kursor */
    opacity: 0.6;         /* Przyciemnia link */
    /* color: currentColor;  Zachowuje kolor tekstu */
    text-decoration: none; /* Usuwa podkreślenie */
}

/* Emoji zakazu po najechaniu 
a.disabled:hover::after {
    content: " 🚫";
    font-size: 1.1em;
}*/

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gradient-third) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.contact-text p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-form-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    color: var(--text-primary);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent-color);
}

.error-message {
    display: none;
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 5px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: 600;
}

.submit-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Alerty */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
	z-index: 9999;
}

.alert-success {
    background: color-mix(in srgb, #27ae60 20%, var(--bg-primary));
    color: var(--text-primary);
    border: 1px solid color-mix(in srgb, #27ae60 40%, transparent);
}

.alert-error {
    background: color-mix(in srgb, var(--accent-color) 20%, var(--bg-primary));
    color: var(--text-primary);
    border: 1px solid color-mix(in srgb, var(--accent-color) 40%, transparent);
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.map-placeholder {
  background: var(--card-bg);
  position: relative;
  padding-bottom: 56.25%; /* proporcja 16:9, można zmienić np. na 75% */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px; /* opcjonalnie zaokrąglenie */
  box-shadow: var(--card-shadow);
}

.map-placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Checkbox group - poprawiona wersja */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    transform: scale(1.2);
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
    color: var(--text-primary);
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-group a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Pulsowanie dla przycisku feedback */
.pulse {
    animation: pulse 2s infinite;
}

.pulse-slow {
    animation: pulse 3s infinite;
}

.pulse-fast {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

/* Alternatywne pulsowanie - tylko tło */
.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        background-color: var(--primary-color);
    }
    50% {
        background-color: color-mix(in srgb, var(--primary-color) 80%, white);
    }
}

/* Pulsowanie border */
.pulse-border {
    animation: pulse-border 2s infinite;
    border: 2px solid var(--primary-color);
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    }
    50% {
        border-color: color-mix(in srgb, var(--primary-color) 60%, white);
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
    }
}

	.newsletter-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 0px;
            padding: 20px;
            background: #111;
            border-radius: 0px;
            color: white;
        }

   .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
        }

  .stat-item i {
            font-size: 1.5rem;
            color: #ffcc00;
        }

   .stat-item span {
            font-size: 0.9rem;
            font-weight: 500;
        }

/* Responsywność */
@media (max-width: 768px) {
	 .nav-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: var(--bg-primary);
        width: 100%;
        padding: 10px 20px;
        position: absolute;
        top: 60px;
        left: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-menu.show {
        display: flex;
		weight: 600;
		font-size: 1.2rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header .container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        background: var(--text-primary);
        border-radius: 2px;
    }

    .header-controls {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
	
	.cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .cookie-option {
        flex-direction: column;
        text-align: left;
    }
	
	 .newsletter-stats {
                flex-direction: column;
                gap: 15px;
            }
}

/* Druk - zawsze jasny tryb */
@media print {
    :root {
        --bg-primary: #ffffff !important;
        --text-primary: #000000 !important;
        --card-bg: #ffffff !important;
    }
}

/* Dla użytkowników preferujących redukcję ruchu */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 12px;
    padding: 10px;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
}
 
.protected-contact {
	color: var(--text);
    min-height: 24px;
    display: inline;
    align-items: center;
}

.protected-contact a {
	color: var(--text);
}

.protected-contact a:hover {
	color: var(--text-primary);
	weight: 800;
	text-decoration: underline;
}

.loading-text {
    color: var(--text-secondary);
    font-style: italic;
}

.loading-dots {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.protected-contact.loaded {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-item i {
    width: 20px;
    text-align: center;
    color: #007bff;
}