:root {
    --primary-pink: #b82d71;
    --whatsapp-green: #25D366;
    --telegram-blue: #0088cc;
    --bg-body: #f4f7f9;
}

body {
    background-color: var(--bg-body);
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* --- Navbar Adjustments --- */
.navbar {
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-pink);
    text-decoration: none !important;
}

/* --- Grid Fix --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Desktop Optimized Card --- */
.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex; /* Image and Content side by side */
    flex-direction: row;
    height: 350px; /* Fixed height for Desktop */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #ddd;
    margin-bottom: 25px;
}

/* --- Slider Section --- */
.slider-container {
    width: 45%; /* Desktop pe 45% image */
    position: relative;
    background: #000;
    overflow: hidden;
    height: 100%;
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.slider-wrapper img {
    min-width: 100%;
    height: 100%;
    object-fit: cover; /* Desktop image fitting fix */
    object-position: center top;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    padding: 10px 8px;
    cursor: pointer;
    z-index: 5;
}

.prev { left: 0; border-radius: 0 5px 5px 0; }
.next { right: 0; border-radius: 5px 0 0 5px; }

.img-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* --- Content Section --- */
.content {
    width: 55%; /* Desktop pe 55% text */
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1.4;
}

.desc {
    font-size: 14px;
    color: #666;
    margin: 15px 0;
}

.info-row {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.info-row i { color: var(--primary-pink); width: 18px; }

/* --- Buttons --- */
.actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.icon-btn {
    flex: 1;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border: 1px solid #eee;
    transition: 0.3s;
}

.icon-btn i { font-size: 26px; }

.call i { color: var(--primary-pink); }
.whatsapp i { color: var(--whatsapp-green); }
.telegram i { color: var(--telegram-blue); }

.icon-btn:hover { background: #f9f9f9; transform: translateY(-2px); }

/* --- Responsive (Mobile) --- */
@media (max-width: 768px) {
    .card {
        flex-direction: column; /* Mobile pe image upar text niche */
        height: auto;
    }
    .slider-container, .content {
        width: 100%;
    }
    .slider-container {
        height: 300px;
    }
    .actions {
        padding-bottom: 10px;
    }
}