* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.logo-img{
    width: 5%;
    border-radius: 50px;
    margin-right:2%;
    margin-left: 1%;
}
nav.navbar.navbar-expand-lg {
    width: 100% !important;
    z-index: 9999 !important;
    background-color: #f8f9fa !important; /* Ова е bg-light бојата */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Главна секција */
.contact-section {
    padding: 80px 0; /* Тргнат страничен padding за да не бутка лево/десно */
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
    width: 100%;
    overflow-x: hidden; /* Спречува хоризонтално бегање */
        padding-top: 10%;
}

/* Центриран контејнер */
.custom-contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px; /* Падингот е внатре во контејнерот */
    box-sizing: border-box;
}

/* Header (About Us стил) */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 15px;
    letter-spacing: -1px;
}

.status-badge {
    background: #e8f4fd;
    color: #68b7de;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.highlight-text {
    color: #68b7de;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #68b7de;
    margin: 15px auto;
    border-radius: 10px;
}

/* Распоред */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; /* Центрирање ако се скрши во нов ред */
}

/* Форма Картичка */
.contact-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #444;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-family: inherit;
    background-color: #fcfcfc;
    box-sizing: border-box; /* Ова спречува ширење надвор од картичката */
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #68b7de;
    box-shadow: 0 0 0 3px rgba(104, 183, 222, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: #68b7de;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #56a3c9;
    transform: translateY(-2px);
}

/* Десен дел (Инфо) */
.contact-info {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background: #fcfcfc;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    border-left: 6px solid #68b7de; /* Исто како Mission Card во About */
    text-align: left;
}

.info-item h4 {
    margin: 0 0 10px 0;
    color: #68b7de;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-card, .contact-info {
        width: 100%;
        min-width: 0;
    }
    
    .contact-info {
        flex: none;
    }
}



















.full-footer {
    width: 100%;
    background-color: #f8f9fa; 
    border-top: 1px solid #ddd;
    padding-top: 50px;
    margin-top: 50px;
    color: #333;

}


.footer-inner {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 40px 20px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #68b7de;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #68b7de;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #555;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #68b7de;
}

.secure-badge {
    margin-top: 15px;
    background: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    color: #68b7de;
    display: inline-block;
}

.footer-copyright {
    width: 100%;
    background-color: #eee;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #777;
}
.logo-img2{
    width: 30%;
    border-radius: 60px;
    margin-bottom: 10px;
    margin-top: -5%;
}



@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .container-flex, .container-flex.reverse {
        flex-direction: column; 
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
.logo-img{
    width: 20%;
}
}
.floating-cart {
    color: rgba(0, 0, 0, 0.55) !important; 
    transition: color 0.3s ease;
    text-decoration: none;
    margin-right: 13%;
}

.floating-cart:hover {
    color: #68b7de !important; 
}


@media (max-width: 991px) {
    .floating-cart {
        position: fixed !important;
        bottom: 25px !important;
        right: 20px !important;
        background-color: #68b7de !important; 
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 50px !important;
        z-index: 10000 !important;
        display: flex !important; 
        align-items: center;
        box-shadow: 0px 6px 20px rgba(0,0,0,0.25) !important;
        margin-right: 0;
    }

   
    .floating-cart svg {
        fill: white !important;
    }
}