/*
 * Ultra Modern About Us Section Styles for Roda Theme
 * Premium design with advanced effects and animations
 */

.about-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.about-us .container {
    padding: 0;
    max-width: none;
    width: 100%;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(17, 14, 127, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(97, 43, 121, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23110e7f" opacity="0.08"/><circle cx="75" cy="75" r="1" fill="%23110e7f" opacity="0.08"/><circle cx="50" cy="10" r="0.5" fill="%23110e7f" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23110e7f" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23110e7f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.about-us-header {
    position: relative;
    z-index: 2;
}

.modern-title {
    font-size: 4rem;
    font-weight: 800;
    color: #612b79;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-underline {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #110e7f, #612b79, #110e7f);
    background-size: 200% 100%;
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 0 20px rgba(17, 14, 127, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 0 30px rgba(97, 43, 121, 0.4);
    }
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 14px;
    background: linear-gradient(90deg, transparent, rgba(97, 43, 121, 0.2), transparent);
    border-radius: 7px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.05); }
}

.about-us-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    padding: 3rem 2rem 3rem 3rem;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 50px rgba(17, 14, 127, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.about-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(17, 14, 127, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.modern-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

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

.modern-content p:nth-of-type(2) {
    color: #612b79;
    font-weight: 600;
    font-size: 1.2rem;
}

.about-us-features {
    padding-left: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 14, 127, 0.1), rgba(97, 43, 121, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateX(15px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(17, 14, 127, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #110e7f, #612b79);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 
        0 10px 25px rgba(17, 14, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #110e7f, #612b79);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature-text h5 {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text p {
    color: #555;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.about-us-content p:nth-of-type(2) {
    color: #612b79;
    font-weight: 700;
}

/* Dodatne animacije za about-us sekciju */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-us-header {
    animation: fadeInUp 0.8s ease-out;
}

.about-us-card {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-item {
    animation: slideInLeft 0.6s ease-out both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.8s;
}

/* Poboljšanja za hover efekte */
.about-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(97, 43, 121, 0.02), rgba(17, 14, 127, 0.02));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-us-card:hover::before {
    opacity: 1;
}

/* Dodatni moderni efekti */
.about-us-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(17, 14, 127, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

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

/* Floating particles effect */
.about-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(17, 14, 127, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(97, 43, 121, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(17, 14, 127, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(97, 43, 121, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatParticles {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-200px) translateX(100px); }
}

/* Responzivni stilovi */
@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us-header {
        padding: 0;
    }

    .modern-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .about-us-card {
        padding: 2rem 1.5rem 2rem 2rem;
        margin: 0;
        border-radius: 0;
        width: 100%;
    }

    .about-us-features {
        padding-left: 0;
        margin-top: 2rem;
    }

    .feature-item {
        margin-bottom: 2rem;
        padding: 1.2rem;
        border-radius: 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-right: 1.5rem;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-text h5 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .feature-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 40px 0;
    }

    .about-us-header {
        padding: 0;
    }

    .modern-title {
        font-size: 2.5rem;
    }
    
    .about-us-card {
        padding: 1.5rem 1rem 1.5rem 1.5rem;
        margin: 0;
        width: 100%;
    }
    
    .feature-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
}

/* Modern Visions Section */
.visions {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.visions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(17, 14, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(97, 43, 121, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.visions-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.visions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(17, 14, 127, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 14, 127, 0.05), rgba(97, 43, 121, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(17, 14, 127, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #110e7f, #612b79);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 25px rgba(17, 14, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(17, 14, 127, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vision-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.vision-title {
    color: #110e7f;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #110e7f, #612b79);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

.vision-description p {
    margin-bottom: 1rem;
    color: #666;
}

.vision-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-decoration {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
}

.vision-decoration .ball {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(17, 14, 127, 0.3));
}

/* Visions Animations */
@keyframes visionFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.vision-card:nth-child(1) {
    animation: visionFloat 6s ease-in-out infinite;
}

.vision-card:nth-child(2) {
    animation: visionFloat 6s ease-in-out infinite 2s;
}

.vision-card:nth-child(3) {
    animation: visionFloat 6s ease-in-out infinite 4s;
}

/* Responzivni stilovi za visions */
@media (max-width: 768px) {
    .visions {
        padding: 80px 0;
    }
    
    .visions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .vision-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .vision-icon i {
        font-size: 1.8rem;
    }
    
    .vision-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .vision-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .visions {
        padding: 60px 0;
    }
    
    .vision-card {
        padding: 1.5rem;
    }
    
    .vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .vision-icon i {
        font-size: 1.5rem;
    }
    
    .vision-title {
        font-size: 1.2rem;
    }
}

/* Modern Trainers Section */
.trainers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.trainers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(17, 14, 127, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(97, 43, 121, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trainers-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.trainers-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.trainers-list-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Last section styling */
.trainers-section.last-section {
    margin-bottom: 0 !important;
    padding-bottom: 80px !important;
}

/* Responzivni stilovi za trainers */
@media (max-width: 768px) {
    .trainers-section {
        padding: 80px 0;
    }
    
    .trainers-list-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trainers-section {
        padding: 60px 0;
    }
    
    .trainers-list-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Modern Promo Section */
.promo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #110e7f 0%, #612b79 100%);
    position: relative;
    overflow: hidden;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(97, 43, 121, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.promo-text {
    flex: 1;
}

.promo-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.promo-schools {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
}

.school-name {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-action {
    flex-shrink: 0;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.promo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.promo-btn i {
    transition: transform 0.3s ease;
}

.promo-btn:hover i {
    transform: translateX(5px);
}

/* Responzivni stilovi za promo */
@media (max-width: 768px) {
    .promo-section {
        padding: 80px 0;
    }
    
    .promo-card {
        padding: 2.5rem;
        border-radius: 25px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .promo-title {
        font-size: 2.5rem;
    }
    
    .promo-schools {
        font-size: 1.1rem;
    }
    
    .promo-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .promo-section {
        padding: 60px 0;
    }
    
    .promo-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .promo-schools {
        font-size: 1rem;
    }
    
    .promo-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Modern Contact Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(17, 14, 127, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(97, 43, 121, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(17, 14, 127, 0.1);
    box-shadow: 
        0 15px 35px rgba(17, 14, 127, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 14, 127, 0.05), rgba(97, 43, 121, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(17, 14, 127, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #110e7f, #612b79);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 8px 20px rgba(17, 14, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(17, 14, 127, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.contact-title {
    color: #110e7f;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-address {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-link {
    color: #110e7f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #612b79;
    text-decoration: none;
    transform: translateX(3px);
}

.company-info {
    background: rgba(17, 14, 127, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(17, 14, 127, 0.1);
}

.company-title {
    color: #110e7f;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.company-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(17, 14, 127, 0.1);
    transition: all 0.3s ease;
}

.company-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 14, 127, 0.1);
}

.company-label {
    color: #110e7f;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-value {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responzivni stilovi za contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.2rem;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .company-info {
        padding: 2rem;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .company-info {
        padding: 1.5rem;
    }
}

