/* ----------------------- */
/*   GLOBAL STYLES         */
/* ----------------------- */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #f1f5ff, #fff7e6);
    color: #222;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ----------------------- */
/*   HERO (HEADER)         */
/* ----------------------- */
.hero {
    background: linear-gradient(120deg, #144169, #1192e6);
    padding: 90px 0;
    text-align: center;
    color: white;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ----------------------- */
/*   CONTACT BUTTONS       */
/* ----------------------- */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.btn-wapp,
.btn-viber {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-wapp {
    background: #ffffff;
    color: #0d74d1;
    border: 2px solid #0d74d1;
}

.btn-wapp:hover {
    background: #e6f2ff;
}

.btn-viber {
    background: #7d3daf;
    color: white;
}

.btn-viber:hover {
    background: #6d2da0;
}


.btn-messenger {
    background: #0084FF;
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.btn-messenger:hover {
    background: #006fd1;
}

/* ----------------------- */
/*   SERVICES SECTION      */
/* ----------------------- */
.services h2 {
    text-align: center;
    margin-top: 55px;
    font-size: 28px;
    color: #0d4c8b;
}

.top-icon {
    display: block;
    margin: 0 auto 20px auto;
    width: 80px;
    height: 80px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 6px solid #0d74d1;
    transition: 0.25s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* ----------------------- */
/*   CONTACT SECTION       */
/* ----------------------- */
.contact {
    background: #144169;
    color: white;
    padding: 55px 0;
    text-align: center;
    margin-top: 40px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.contact-box {
    font-size: 22px;
    line-height: 1.8;
    margin-top: 20px;
}

/* ----------------------- */
/*   FOOTER                */
/* ----------------------- */
footer {
    text-align: center;
    padding: 18px;
    background: #0b5ba1;
    color: white;
    font-size: 14px;
}

/* ----------------------- */
/*   ANIMATIONS            */
/* ----------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 0.7s ease forwards;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------- */
/*   MOBILE FIXES          */
/* ----------------------- */
@media (max-width: 600px) {
    .hero h1 { font-size: 38px; }
    .subtitle { font-size: 16px; }
    .btn-wapp, .btn-viber { padding: 10px 20px; font-size: 14px; }
}
/* Donation/BTC Address Styling */
.donation-container {
    margin: 15px auto 10px;
    padding: 10px 15px;
    background-color: #282828; /* მუქი ფონი */
    border: 1px solid #FF9800; /* ნარინჯისფერი აქცენტი */
    border-radius: 5px;
    max-width: 450px;
}

.donation-text {
    font-size: 0.9em;
    color: #e0e0e0;
    margin-bottom: 8px;
    text-align: center;
}

.btc-address-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a1a1a;
    padding: 5px;
    border-radius: 3px;
    font-family: monospace;
}

.btc-address-label {
    color: #f7b731; /* ოქროსფერი */
    font-weight: bold;
    margin-right: 5px;
}

.btc-address-value {
    flex-grow: 1; /* მისამართი იკავებს დარჩენილ ადგილს */
    font-size: 0.9em;
    color: #b0b0b0;
    overflow: hidden;
    text-overflow: ellipsis; /* თუ მისამართი ძალიან გრძელია */
}

.copy-button {
    background-color: #FF9800;
    color: #121212;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: bold;
    transition: background-color 0.2s;
}

.copy-button:hover {
    background-color: #e68900;
}
